I'm trying to optimize my website's load time because it was too long, and it still is but especially for the Jquery UI CSS images,

if you have a minute, could you please look this pingdom test? http://tools.pingdom.com/?url=keepyourlinks.com&treeview=0&column=objectID&order=1&type=1&save=true

Among files number 60 and 75 there are few images from the Jquery CSS file (just renamed the path). They take up to 3 seconds to connect, and then they seem to load fast.. But 3 seconds to connect?

The piece of CSS related to this:

.ui-icon { width: 16px; height: 16px; background-image: url(/css/images/ui-icons_222222_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(/css/images/ui-icons_222222_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(/css/images/ui-icons_222222_256x240.png); }
.ui-state-default .ui-icon { background-image: url(/css/images/ui-icons_888888_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(/css/images/ui-icons_454545_256x240.png); }
.ui-state-active .ui-icon {background-image: url(/css/images/ui-icons_454545_256x240.png); }

And the path of this css file is: /CSS/ui.css and the images path is: /CSS/images/*.png

If this is not about Paths i am completely lost here, any clue?

Thank you very much in advance

link|improve this question

Your site loads fast enough for me. Firebug reports onload taking 2.6 seconds when the cache is primed. – thirtydot Feb 18 '11 at 23:07
feedback

2 Answers

up vote 1 down vote accepted

The other thing to think about is that your browser uses caching. So, when you run a test like this it will look like JQuery UI images are horribly slow. But to the user (with a proper browser caching setup in place) the "penalty" will only happen once. So, in reality it's not an entirely fair test.

I'd worry more about your 40kb background image and less-than-perfectly-optimized CSS. Try this website on your css document to drop 13% of it's overhead (on the main site css) Also, you could benefit by combining the CSS documents together, which will lower HTTP overhead. Again, thanks to the concept of browser caching this would be a one-time only improvement for a properly setup browser.

Compared to many sites out there, this one loads quite quick. Unless your site is going out to 20+million daily, or you're paying by the kb for bandwidth, the setup is more than adequate.

link|improve this answer
i really apriciate. I understand much better now, Thank you! And thanks for the link ;) – Toni Michel Caubet Feb 18 '11 at 23:36
feedback

I am not seeing that long of a delay. It looks like they take less than a second to load.

enter image description here

link|improve this answer
This is what I saw when the test ran: i.imgur.com/6tIUe.png – jnpcl Feb 18 '11 at 23:08
But i tried in different computers and different internet conections. i'm just even more lost if posible now hahaha. thanks! so.. what shall i try/think? Edited with pic – Toni Michel Caubet Feb 18 '11 at 23:14
1  
The pingdom.com website is the one that's doing the loading.. So testing with different computers and connections isn't going to do anything for you because it's not using YOUR computer/connection for the test. – jnpcl Feb 18 '11 at 23:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.