Speed Questions

windows

Guest
Right now I include my CSS with a PHP include, making it inline, but still from an external file, so, Is there any difference in speed when you compare inline CSS with that which is referenced like this:
<link rel=stylesheet type="text/css" href=http://www.webdeveloper.com/forum/archive/index.php/"style.css">
?

Thanks & Regards, JonnieA linked file is cashed, inline css is not.
If you are re-using the css then use it linked.OK, done.

ThanksIt does a huge difference. I utilize 3 external style sheets.

Netscape caches the website and it takes my website forever to pull up with a file size with an mediocre 50k.
IE doesn't cache and it pulls up very quickly.

Test it

<!-- w --><a class="postlink" href="http://www.intensedevelopment.netIt">www.intensedevelopment.netIt</a><!-- w --> is the initial loading that takes so long in Moz. Re-loading of the site is just as fast as IE.
Maybe it's the applet causing the delay in Moz.You're right - I use Moz and there is a pretty noticeable difference.

Thanks for the advice - this is almost the best way to improve the speed of my site; the best was adding a Gzip encoding class through PHP.
 
Back
Top