I moved the css link elements and some css style definitions that were in the Head Tag section into a ReadyTheme content section and then put that item tag in the Head Tag section - just making some of this a little more legible. I was surprised at how much faster my pages load now and wondered at that - are the ReadyTheme content sections cached or is there some other reason why moving that code in there seems to have noticeably sped up all my pages?
Announcement
Collapse
No announcement yet.
ReadyTheme Content Sections
Collapse
X
-
Chances are that your CSS is now being called outside the HEAD tag since the content element puts the content in a DIV. This can cause issues in some older browsers.Matt Zimmermann
Miva Web Developer
Alchemy Web Development
https://www.alchemywebdev.com
Site Development - Maintenance - Consultation
Miva Certified Developer
Miva Professional Developer
https://www.dev4web.net | Twitter
- 1 like
-
If your server is setup correctly (or alternately, you have htaccess directives) CSS in files are cached, so it would be even faster to add those inline styles to .css file. Minify and compile them if possible.Bruce Golub
Phosphor Media - "Your Success is our Business"
Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
phosphormedia.com
- 1 like
Comment
-
Originally posted by Matt Zimmermann View PostChances are that your CSS is now being called outside the HEAD tag since the content element puts the content in a DIV. This can cause issues in some older browsers.
Comment
-
Originally posted by Bruce - PhosphorMedia View PostIf your server is setup correctly (or alternately, you have htaccess directives) CSS in files are cached, so it would be even faster to add those inline styles to .css file. Minify and compile them if possible.
Comment
Comment