Have you linked the external css file correctly:
HTML Code:
<link rel="stylesheet" href="yourstyles.css" type="text/css" />
As a test, you could temporarily add:
HTML Code:
background-color: red;
to the body rule to see whether rules in the stylesheet are getting used. If the background does show up red then you know you have linked to the stylesheet correctly and there is either something wrong with the rule for the background-image, or a preceding rule.
Last edited by gringo; 02-19-2007 at 10:57 AM..
|