http://jigsaw.w3.org/css-validator/...g=0&uri=http://www.phoenixsupras.exofire.net/ "Parse Errors" - can you tell me what I have to change the errors to in order to get a valid css document. My CSS can be found at www.phoenixsupras.exofire.net/css/style_screen.css Thanks
There's a lot of errors there to go though, but they should be easy enough to sort out. When a parse error is reported on the validator it means maybe that a } curly bracket has been left off of something similar - CSS spelling mistakes really. .content-txtbox-shade {margin:0 px; padding: 7px 10px 5px 10px; background-color: rgb(215,215,215);} So, if we look at the first reported - you have a gap inbetween 0 and px. Change it to as below and it will validate fine: .content-txtbox-shade {margin:0; padding: 7px 10px 5px 10px; background-color: rgb(215,215,215);} Go through them one at a time and pay close attention to little silly mistakes that have crept in.
Ahh, thanks. Hopefully that's all it is. Didn't realise that would have been such a problem. Thank you. I will post back if there are some I can't fathom out.
You seem set up wrong CSS file, in valider the URL of your CSS is "style_print.css" not "style_screen.css". If you using "style_screen.css" you're valid.