-1

I would like to remove the padding on weebly of a single page so that a custom html element will display on the entire screen instead of having white edges. Link to the website

If this isn't possible then how could I change the background of just that page?

Goel
  • 53
  • 2
  • 9

2 Answers2

0

/* Flexible iFrame */
 
.flexible-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
 
.flexible-container iframe,   
.flexible-container object,  
.flexible-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
<!-- Responsive iFrame -->
<div class="flexible-container">
<iframe src=""http://imcrafty.buycraft.net" width="100%" height="1050" frameborder="0" style="border:0"></iframe>
</div>
mlegg
  • 784
  • 6
  • 19
  • 35
0

I messed around with the html and found a solution, Go to theme > Edit Html/Css > open main_style.css > Change

#content {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4.5em 2em;
    background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}

to

#content {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 4.5em 2em;
    background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}
Goel
  • 53
  • 2
  • 9