Nice work Levi. I like the design and the color scheme is clean.
I would consider specifying the text color. You don't have one and when this happens the text color is defaulted to the users preference. It may make the text hard to read for visitors who have their default text color set to a light color.
The simplest way to do this is make the color black or a dark color in your CSS:
body {
background-color: #257ACE;
color:#000;
}
Unless the text color is specified to something different (as in your style7 class), all text in the body will be black.
Last edited by ydx; 01-14-2008 at 10:05 PM.
|