View Single Post
Old 03-18-2009, 07:07 PM   #27
AllOGistics
Guest
 
Posts: n/a
Default Re: Check it out....

Quote:
Originally Posted by smitdavi View Post
Another question. The top image/nav is an image map. How do I make it load faster and work properly on the first rollover? It will delay and then work. Also once it has been rolled over it works really quickly there on after. Any suggestions?
One thing that can help is to preload the image using your CSS. Here is a sample code.

<div style="display:none;">
<img src="images/image1.jpg"><img src="images/image2.jpg">etc...
</div>

By putting it inside the <div>, the image will not display but will be loaded into the background. The makes the resource readily available. Also, it would of made formatting much easier to use tables or a CSS to align text. It's also a little more browser friendly.
  Reply With Quote