Re: chrome scrolling bug
Posted: Sat Jul 28, 2018 4:16 pm
about the gap: i created a wp page with a little text and a img (here) and there is no white space by default in the theme, the image fits perfectly with the bottom, so i think its not a problem with my wp theme.
this is not a solution but i did a fix: creating a .gapfix class in your page-footer.php
with simple css i add in wordpress:
with the background color of the footer of my phpbb theme. the space remains but now is coloured
and with a padding-bottom, it keeps the color:
with margin-bottom, i suppose the margin is not applied in the iframe so
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!
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!