Not a problem. Glad to help.
You also have about 3 more parse errors that need fixed for your css to validate.
1. Find and remove the # from this block of code:
2. Find and remove (or add a value like "repeat-x", "repeat-y", or "no-repeat") the background-repeat:; from this block of code:Code:#navCatTabs ul li a { color: #none; }
3. Find and fix the "no repeat" (should have a hyphen, looking like "no-repeat") in this block of code (first block in the stylesheet):Code:#logoWrapper{ background-image:url(../images/); background-repeat:; background-color: #a9cf54; height:200px; width:850px; }
Once you get those fixed, you should have valid css!Code:body { margin: 0; font-family: verdana, arial, helvetica, sans-serif; font-size: 62.5%; color: #000000; background-image:url(../images/logotest.png); background-repeat: no repeat;(should be: background-repeat: no-repeat;) background-color: #43727f; }
Hope this helps.


Reply With Quote
