compwhizii |
02-27-2010 04:01 PM |
Quote:
Originally Posted by Andy
(Post 1991857)
One reason vB4 is slower than vb3 is the use of shading and rounded corners. Add this to the bottom of the additional.css template and your forum will speed up considerably.
* { -moz-box-shadow: none !important; }
* { -webkit-box-shadow: none !important; }
* { -moz-border-radius: 0px !important; }
* { -webkit-border-radius: 0px !important; }
|
Are you serious? Are you telling me that rounded corners are going to slow website loading to a crawl?
Please refer to this.
With firebug, it's saying that to load the main page I need 91 HTTP requests, taking 22 seconds, and is 860KB to download with nothing cached. The vbulletin default theme is 64 requests and 280 KB. Mine is 32 requests 322KB. That's way too many requests and way too much to download.
YSlow tells a similar tale also,
http://grab.by/2IQs
Grade of E, I'm surprised it's not F.
http://grab.by/2IQu
You have Zero Caching on almost all of your files. Every time someone loads the page they need to request the files again. That's wasteful.
Before you start pointing fingers at vbulletin you need to do some serious optimization.
|