CorbinMyMan
Technical User
I'm having an issue with an image i'm setting as a background using CSS not showing up. Here's my CSS code:
#topSection
{
border: solid 1px black;
margin: 3px 203px 1px 1px;
height: 53px;
background-image: url(images/header/blue_white_filler.jpg);
background-repeat: repeat-x;
background-position: top left
}
and here is the html:
<BODY>
<div id="topSection"></div>
</BODY>
All the other styles for that id are working fine, such as the border and margin, just not the background image.
Am I doing something wrong? THANKS!
#topSection
{
border: solid 1px black;
margin: 3px 203px 1px 1px;
height: 53px;
background-image: url(images/header/blue_white_filler.jpg);
background-repeat: repeat-x;
background-position: top left
}
and here is the html:
<BODY>
<div id="topSection"></div>
</BODY>
All the other styles for that id are working fine, such as the border and margin, just not the background image.
Am I doing something wrong? THANKS!