Version: 1.00, by abdobasha2004
Developer Last Online: Sep 2019
Category: Board Optimization -
Version: 3.7.x
Rating:
Released: 11-13-2008
Last Update: Never
Installs: 13
Template Edits
Re-useable Code Translations
No support by the author.
Features :
Do you want your header and footer be static and do not change while user browsing your forum, try this simple code Code :
Code:
<div style=" overflow: auto; ">
Any part you want to be static
</div>
update by WNxWakko
Quote:
IE works flawless. FireFox however doesn't like it so much and may be the reason some say it doesn't work. They are using Firefox.
Another issue I found was that i used this surrounding a table in my header and in Firefox is distorted my header. So i get performance boost in IE and not in FF with a bug in FF that prevents me from using this.
So I put this as a fix and wanted to share with others if they experienced Firefox bugs because it resolved my issue.
Code:
<!--[if IE]>
<div style=" overflow: auto; "><![endif]-->
Your header or footer
<!--[if IE]></div><![endif]-->
Even though FF users wont get the benefit directly, the load reduction on the server from IE users will spread the wealth to FF users.
change " Any part you want to be static" with your header of footer code
also could be applied to any template to be static while browsing
I think it is very obvious some worked well with them
others did not
others who did not plz try modification done by WNxWakko
And thank you very much WNxWakko
Installed. Seems to really increase load times for me. One question tho. Do we use BOTH codes? When I say, both, I mean WNxWakko's and abdobasha2004's? Or we do just use one.
I don't see much difference between the two anyhow.
Installed. Seems to really increase load times for me. One question tho. Do we use BOTH codes? When I say, both, I mean WNxWakko's and abdobasha2004's? Or we do just use one.
I don't see much difference between the two anyhow.
The code bit that I presented should only be used if you have issues in browsers other than IE. In my case, my forum header is a liquid table with some fixed cells and each cell has a flash file. So in FireFox, it has some strange behavior. Adding my code made this work only for IE users since FF users would have issues. In my case using this mod reduced the load for 50% of my traffic which is better than none at all.
Mine is also a Liquid table (100%). I have installed both codes, one at a time, and don't see any difference on FF or IE between the two. I do see a noticable difference using this mod, tho.
The code bit that I presented should only be used if you have issues in browsers other than IE. In my case, my forum header is a liquid table with some fixed cells and each cell has a flash file. So in FireFox, it has some strange behavior. Adding my code made this work only for IE users since FF users would have issues. In my case using this mod reduced the load for 50% of my traffic which is better than none at all.
Another Question: How would I implement this into NON vb pages? I tried to set it up just like I did on VB Pages, but it's not working the same. Do I have to add a special part into the css using the overflow style?