Posts: 488
Name: Chip Johns
Location: Savannah Georgia
|
With these images you should be able to crank them down quite a bit more. Jpeg is going to be your best bet. That is for sure. Are you using image ready? you can target sections of your images and crank the values down.
One thing to remember. You have done a pretty good job of optimizing the site for optimal download. These images only have to download once. Once in cache, they are used over and over.
Very nice. Use of css to create the look. Very impressive. If I can give just one little bit of criticism (not a major point by any means.) We have a tendancy to use divs for everything. Divs have their place, however, a div does not give your content structure. The proper use of structural elements such as <p>content</p>, <h1> content</h1>, <li>content</li>
When using css for block type format, you can apply the same attributes to the paragraph element, heading elements, etc.
Example: Instead of <div id="stuff"> you can use <p id="stuff"> and get the same effect, only now the content has structure whereas before it really doesn't. If you do use divs try to still use p tags for content inside the divs. Thus giving the text *structure.*
I only bring this up because it is obvious that you have a real good grasp on the use of css.
Something else to just bring to your attention. The site navigation. Are you looking for Search Engine placement with this site? The JS navigation is not spidderable. The se's will not be able to spider the site. They will hit the home page and not be able to go any further. And most likely because of this, they will not rank a one page site very well. My suggestion is to change navigation to text based links.. The site isn't that big, so you can get away with just changing all of the pages. If you plan on growing the site, I suggest using php or asp to use includeds for the site navigation.
I know you didn't ask for all of this, but thought I'd interject.
Excellent job Mike.
|