Hello, I have master.css file that looks like this:
[code]
body
{
background-image:
url('topBan2.jpg');
}
[/code]
I'm using a configuration file to set certain attributes to the style. Is there a way for a JSP page to be a CSS page? If not, I need to know how to do something like the following to the CSS page.
[code]
body
{
background-image:
url('<%=myPicture%>');
}
[/code]
Thank you.
Strick