I don’t want to sound nit-picky or anything, and this doesn’t seem to have any effect on page usability, but I’m noticing several CSS warnings popping up in my error console, so I thought I’d point them out:
forum.css
Warning: Error in parsing value for ‘font-weight’. Declaration dropped.
Source file: http://www.chatbots.org/css/forum.css Line: 13
div.topic_closed p { color:red; font-weight:12px; text-align:center;} (font weight isn’t measured in pixels)
screen.css
Warning: Unknown property ‘text-overflow’. Declaration dropped.
Source file: http://www.chatbots.org/css/screen.css Line: 21
.ellipsis { text-overflow:ellipsis; } (Huh???)
Warning: Expected ‘:’ but found ‘;’. Declaration dropped.
Source file: http://www.chatbots.org/css/screen.css Line: 62
div#main_tabs span a img { z-index:10;absolute;left:0;top:0; } (missing ‘position:’)
Warning: Expected ‘:’ but found ‘;’. Declaration dropped.
Source file: http://www.chatbots.org/css/screen.css Line: 68
div#sublevel_tabs span a img { z-index:10;absolute;left:0;top:0; }(same as above)
Warning: Selector expected. Ruleset ignored due to bad selector.
Source file: http://www.chatbots.org/css/screen.css Line: 170
//div.post ul { margin:5px 0;padding:0 0 0 24px;list-style-image:url(/design/dot.gif); }(double slashes aren’t comments in CSS)
Warning: Expected identifier for class selector but found ’ ‘. Ruleset ignored due to bad selector.
Source file: http://www.chatbots.org/css/screen.css Line: 266
input.radiobox, input. { margin-right: 3px; margin-bottom: -1px; vertical-align: baseline; border: none !important; background: transparent !important; }(the declaration is referring to an “empty” class)
There are several others, as well, but they refer to “filter”, and “-moz-opacity”. Those declarations are formatted correctly, but Firefox reports them, as they’re not exactly “standards compliant”.