Page 2 of 7

Re: chrome scrolling bug

Posted: Sat Jul 28, 2018 3:10 am
by kiro
sorry, i deleted the message and forgot to add the link later. the solution for scrolling bug is here

well, i tested before adding your modification and it was only a chome bug (at least in my computer), but your code in overall_footer.php worked perfectly so it's solved :D
the gap space is still there. i tried with default phpbb theme and it didnt solve, i tried with another wordpress theme and the gap is bigger, so im thinking that pretty sure the problem is in wordpress pages. it seems like the themes left a margin between the end of the page and the footer by default. i'm going to work with the page-forum.php and css template file on my own and ask in the theme support forum if i can't find the solution.
thanks for your support, you are really efficient :D

p.s: i saw in wp user options that there are new profiles, the old (suscriptor, editor, administrator, etc) from wp roles and the new (spectator, participant, keymaster, etc.) from phpbb roles. there is no interference between them? for example, if a new user registers from phpbb takes a participant profile in phpbb and subscriptor in wordpress and viceversa? i don't know how this role integration works

Re: chrome scrolling bug

Posted: Sat Jul 28, 2018 10:01 am
by axew3
about roles between CMS i've just write a memo and how to resume (that will be not more necessary as the plugin will be improved to resolve in a convenient way also this aspect, presumably on 1.9.0 release)
check this for all answers about:
What's about roles between integrated phpBB and Wordpress?

Re: chrome scrolling bug

Posted: Sat Jul 28, 2018 4:16 pm
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!

Re: chrome scrolling bug

Posted: Sat Jul 28, 2018 4:53 pm
by kiro
another point.. when clicking a link in the forum, the link page or image opens in iframe :lol:
Image

Re: chrome scrolling bug

Posted: Sat Jul 28, 2018 6:14 pm
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?

Re: chrome scrolling bug

Posted: Sat Jul 28, 2018 6:56 pm
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 :)