this is not a solution but i did a fix: creating a .gapfix class in your page-footer.php
Code: Select all
(<!-- START iframe div -->
<div class="gapfix">)
Code: Select all
.gapfix {
background-color: #3a3e47;
}
and with a padding-bottom, it keeps the color:
Code: Select all
.gapfix {
background-color: #3a3e47;
padding-bottom: 50px;
}
with margin-bottom, i suppose the margin is not applied in the iframe so
Code: Select all
.gapfix {
background-color: #3a3e47;
margin-bottom: 50px;
}
nothing happens if i put a negative number (-10px) in padding-bottom.
i suppose the problem is in the iframe height and i still want to solve it, because when page is loading the background-color displays like:
greetings!