Hi,
I have a problem with displaying a background image in a table cell with repeat x set.
In the CSS I have:
.welcomeHeader
{
BACKGROUND-IMAGE: url(images/other/shadowheader.jpg);
BACKGROUND-REPEAT: repeat-x;
font-size: 16px;
background-attachment: fixed;
font-family: Arial, Verdana;
height: 21px;
color:Red;
width: 550px;
}
In the .aspx page I have this:
<table class="welcomeHeader" >
' stuff in the table cell
</table>
Now when I preview it in VS, it shows the shaded border behind the red text.
However when I run it, no background image appears. Why does it appear in the preview in VS but NOT in the running version of the app?
This is becoming an annoying 'feature' of VS ASP.NET, things rendering ok so everything looks find and dandy, but you get a nasty surprise when you run it. I feel like I'm developing through trial and error.
The CSS file is stored under MyTheme under App_Themes.
Any help would be appreciated, thanks.