Problem with background images in CSS & Tomcat
Hi,
I have problems displaying background images using CSS through the tomcat server.
I basically have a html file which links to a css file which has the background style. An example of one of the styles is
.centeractivetab
{
background-image : url(../images/Tabs/centeractivetab.png);
background-repeat : repeat;
text-align:left;
border-bottom:none;
font-family : verdana,arial,sans-serif ;
font-size:.8em;
text-decoration: none;
cursor: default;
}
The background image appears when I load the html file directly through IE. However, when I load it through the tomcat server, the background image is not there.
I am currently using Tomcat 5.0.
Any idea why is this happening?
|