chrome scrolling bug

kiro
User ww
User ww
Posts: 33
Joined: Wed Jul 25, 2018 6:44 pm

Re: chrome scrolling bug

Post by kiro »

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

Code: Select all

(<!-- START iframe div -->
<div class="gapfix">)
with simple css i add in wordpress:

Code: Select all

.gapfix { 
    background-color: #3a3e47;
}
with the background color of the footer of my phpbb theme. the space remains but now is coloured
Image
and with a padding-bottom, it keeps the color:

Code: Select all

.gapfix { 
    background-color: #3a3e47;
    padding-bottom: 50px;
}
Image
with margin-bottom, i suppose the margin is not applied in the iframe so

Code: Select all

.gapfix { 
    background-color: #3a3e47;
    margin-bottom: 50px;
}
Image

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:
Image
greetings!
kiro
User ww
User ww
Posts: 33
Joined: Wed Jul 25, 2018 6:44 pm

Re: chrome scrolling bug

Post by kiro »

another point.. when clicking a link in the forum, the link page or image opens in iframe :lol:
Image
User avatar
axew3
w3all User
w3all User
Posts: 2883
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: chrome scrolling bug

Post by axew3 »

good! mh ... i say that i want fix all about iframe from long time and still i've not put eyes on it ...

so i take for good what you say at moment, or i should have the theme to test (are these themes free downloadable?) and ... your fix work on any browser?
kiro
User ww
User ww
Posts: 33
Joined: Wed Jul 25, 2018 6:44 pm

Re: chrome scrolling bug

Post by kiro »

the fix works in both browsers (i use chrome and firefox). for the moment I leave it like this, I will resume it later if I have time.
so, for the moment the only major bug i've seen is the links issue ive told you before :)
User avatar
axew3
w3all User
w3all User
Posts: 2883
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: chrome scrolling bug

Post by axew3 »

so when you click on a link into a post, that is pointing to an external resource, this forum on your test, it open into iframe in the same wp forum page?
I assume it is a problem like the one of editor, the javascript fail on detect it like an external url.
Please point me to the page where you have a live test of it.
kiro
User ww
User ww
Posts: 33
Joined: Wed Jul 25, 2018 6:44 pm

Re: chrome scrolling bug

Post by kiro »

yes, exactly. i cant point you exactly to the page because the problem with iframe page is that the navigator url always is http://xxx.net/forum, but if you enter in the site, in the first forum (General) there is a post called "Links and Image test" where there is a external link to your web.

because the same reason there is another logic problem, if i refresh the page (for example in a forum post) it leads to the main index forum (the browser refresh the url and always is http://xxx.net/forum), i dont know if there is a fix to it
Locked