Yes, you have to optimize the rollover images as well since it has to load a different image. The images look pretty good now though! http://www.netmechanic.com/products/...eeSample.shtml is a great resource to check loading time of your site and other problems with it.
I looked at your HTML to figure out why it wasn't centered, and I realized it was totally messed up. First of all, instead of having a bunch of CSS on each page, you should have it link to an external .css file.
Code:
<link rel="stylesheet" type="text/css" href="http://www.outdoorhighadventure.com/style.css">
Also, you can link to an external javascript file so you don't have to have that image preload script on each page, which cuts down on the loading time.
Code:
<script type="text/javascript" src="http://www.outdoorhighadventure.com/slide.js"></script>
Then this is where you really messed up in the HTML. You started the <body> without ending the <head>. Then you go in and have <title>CSI Security Inc. Homepage</title></head> which should be inside the head and not the body. So you need to move those lines up before you first open the body tag. Then eliminate the double <body> tag. Then have the <div align=center> after the body tag (be sure you end it right before you close the body tag, </body>) and that hopefully will center everything, instead of just the bottom content which it looks like it is now.
After fixing all those problems, make sure you optimize ALL the images on your site because on the other pages they are still loading slow. Then make sure each page is centered. That should help the 'childish' look a bit. Honestly, the nav bar is a big thing that I think makes it look bad.
__________________
Colton
Wild Backpacker
Please login or register to view this content. Registration is FREE
|