I have been working on improving the load time of my website as it was quite lengthy, but even after optimizations, I am facing issues specifically with the jQuery UI CSS images.
If you could spare a moment, would you mind taking a look at this Pingdom test?
Between files number 60 and 75, there are a few images from the jQuery CSS file (with renamed paths) that are taking up to 3 seconds to connect. After that initial delay, they seem to load quickly. But why should it take 3 seconds just to connect?
The relevant CSS snippet is:
.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); }
The path to this CSS file is: /CSS/ui.css
and the images' path is: /CSS/images/*.png
If this issue isn't related to paths, then I'm completely lost. Any ideas or suggestions?