Hello all,
I am having some difficulty with css on my site. I have a simple style.css file on an .asp page as an include. When I run the page the css does not appear to fire. Now, when I push the file to another development server, the css now fires without having modified any code. My css looks something like this:
div.NoSelectedTab{
float: left;
background-color: transparent;
background-image: url('/images/GrayTab.gif');
width: 75px;
height: 20px;
text-align: center;
vertical-align: middle;
cursor: hand;
}
My asp page codes looks like this:
<div id="divTabPA" class="NoSelectedTab" onclick="ChangeTab( 'PA' );">Annual</div>
The problem is that the GrayTab.gif does not display. Does anyone have any ideas on what the cause is?? Thanks for all your help.
I am having some difficulty with css on my site. I have a simple style.css file on an .asp page as an include. When I run the page the css does not appear to fire. Now, when I push the file to another development server, the css now fires without having modified any code. My css looks something like this:
div.NoSelectedTab{
float: left;
background-color: transparent;
background-image: url('/images/GrayTab.gif');
width: 75px;
height: 20px;
text-align: center;
vertical-align: middle;
cursor: hand;
}
My asp page codes looks like this:
<div id="divTabPA" class="NoSelectedTab" onclick="ChangeTab( 'PA' );">Annual</div>
The problem is that the GrayTab.gif does not display. Does anyone have any ideas on what the cause is?? Thanks for all your help.