2.8.8 template integration improvements and 2.8.8 pre-logs

User avatar
Ezrael
User www
User www
Posts: 95
Joined: Wed Nov 15, 2023 9:11 pm
Contact:

Re: Coming 2.8.8 logs

Post by Ezrael »

Done! Issue is still there

The Forum is now accessible for guests: https://forum.surferparadise.de/viewtopic.php?t=146
User avatar
axew3
w3all User
w3all User
Posts: 2866
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Coming 2.8.8 logs

Post by axew3 »

while it seem to work fine into any other page,
included here
https://forum.surferparadise.de/viewtopic.php?t=129
this topic do not fail, So, i assume, that into your phpBB there is something that make it fail someway the iframe resize library, while it load into a topic like
https://forum.surferparadise.de/viewtopic.php?t=146

I detect that your problem is:
the bbcode TAG, do not remember if you mentioned it before:
removing bbcode CODE tags the page display ok.

So you have to change the css of the selectors pre and code into your phpBB theme CSS: should be something like overflow-x:scroll; to be applied into mentioned selectors
User avatar
Ezrael
User www
User www
Posts: 95
Joined: Wed Nov 15, 2023 9:11 pm
Contact:

Re: Coming 2.8.8 logs

Post by Ezrael »

But this is caused by the changes you did in your code? Because it worked before without any issue.

How much work is it to work with the old code but the new resizer?
User avatar
axew3
w3all User
w3all User
Posts: 2866
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Coming 2.8.8 logs

Post by axew3 »

Wait wait, i've get the same! No by the resizer himself or the css applied into the overall_footer!
User avatar
axew3
w3all User
w3all User
Posts: 2866
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Coming 2.8.8 logs

Post by axew3 »

Wait wait, i've get the same! No by the resizer himself or the css applied into the overall_footer!
it seem to me by the resizer or we have to find out the right solution... i'll look, anyway

Into the overall-footer.html code, try to change:

Code: Select all

      if( typeof t != 'undefined' || t != false )
   {
     t.setAttribute("style", "position:fixed;top:0;min-width:100%;min-height:100%;padding:0");
     document.getElementById("wrap").setAttribute("style", "position:relative;top:0%;min-height:100%;margin:10px");
   }
into

Code: Select all

   if( typeof t != 'undefined' || t != false )
   {
     t.setAttribute("style", "position:relative;top:0;left:0;height:100%;");
     //document.getElementById("wrap").setAttribute("style", "position:relative;top:0%;min-height:100%;margin:10px");
   }
into my example it work fine, but i assume i have to find out the definitive solution, so to have equal distance around the phpBB (top-bottom), it differ of some pixel
User avatar
Ezrael
User www
User www
Posts: 95
Joined: Wed Nov 15, 2023 9:11 pm
Contact:

Re: Coming 2.8.8 logs

Post by Ezrael »

Exactly

https://forum.surferparadise.de/viewtop ... p=198#p198 direct link to the post is out of order
Post Reply