You have this in your stylesheet:
Code:
#bott_links_all a:hover {
color: #0066CC;
font-size: 10px;
position: 576px;
}
position:576px is where the validator is choking.
The position CSS property isn't meant to be a measurement. It's supposed to be one of the following: absolute, relative, fixed or static. Once you've chosen which of those you're going to use, you can then use the top, left, bottom or right properties to specify where the position is.
I'm guessing what you want would be something more like this:
Code:
#bott_links_all a:hover {
color: #0066CC;
font-size: 10px;
position: absolute; /* Setting the position property */
top: 576px; /* Setting where the element should appear */
}
Even if that's not the effect you want, getting rid of position:576px will get your CSS to validate. It won't do anything for you anyway, formatted that way.
Hope this helps!
Matthew

Originally Posted by
cliff_ie
Bookmarks