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
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
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
chrome scrolling bug
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
Re: chrome scrolling bug
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?
check this for all answers about:
What's about roles between integrated phpBB and Wordpress?
-
- User ww
- Posts: 33
- Joined: Wed Jul 25, 2018 6:44 pm
Re: chrome scrolling bug
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!
-
- User ww
- Posts: 33
- Joined: Wed Jul 25, 2018 6:44 pm
Re: chrome scrolling bug
another point.. when clicking a link in the forum, the link page or image opens in iframe
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
Re: chrome scrolling bug
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?
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?
-
- User ww
- Posts: 33
- Joined: Wed Jul 25, 2018 6:44 pm
Re: chrome scrolling bug
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
so, for the moment the only major bug i've seen is the links issue ive told you before