I am having trouble after I upload to my site. The CSS works well as long as I am checking the version on my computer, but as soon as I upload it, it quits. Both my CSS and html have validated on the W3C checker. I have not done alot of sites but I have never had this problem before. It is consistant in IE, Firefox and Google
Your CSS quits? Are you sure that you have entered the correct path to the style sheet? If both the HTML document and the CSS document are in the same directory, the path should be expressed like this: <link rel="stylesheet" type="text/css" href="[B]stylesheet.css[/B]" /> Code (markup): If, however, they are in separate directories, then the directory in which the CSS document resides should be defined like this: <link rel="stylesheet" type="text/css" href="[B]directory_name/stylesheet.css[/B]" /> Code (markup): Apart from that, I can't think of anything else.
best for you is to install firebug extension in firefox and check some another page, for exampel mine: www.sns.hr
Make sure you wrote the href to the CSS file correctly. If some of the letters are capitalized, so must the href....
Question nobody else here seems to be asking... URL? Without seeing the code in question everyone is just wildly guessing.