aspose file tools
The moose likes Struts and the fly likes Rendering images with CSS in struts Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Rendering images with CSS in struts" Watch "Rendering images with CSS in struts" New topic
Author

Rendering images with CSS in struts

Aash Patel
Greenhorn

Joined: Sep 14, 2005
Posts: 24
I am trying to render an image on a JSP page through CSS in a struts application.

This is what I'm trying to do:

CSS
...
#topbar
{
width: 100%;
height: 50px;
background: #0066FF
url(/images/logo.gif) no-repeat center center;
}
...

JSP
...
<link href="CSS/styles.css" rel="stylesheet" type="text/css" />
...
<div id="topbar" />
...

The JSP reads the CSS file fine since all other formatting is acknowledged however the image for my top bar is not displayed. The background shows up fine. It seems like a context relative issue but I'm not sure how to resolve it. Any suggestions much appreciated.

Thanks.
Kerry Wilson
Ranch Hand

Joined: Oct 29, 2003
Posts: 251
You probably need to put your context path in the background-image url.


http://www.goodercode.com
SCJP 1.4
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Rendering images with CSS in struts
 
Similar Threads
CSS
IE Vs FirFox , image upload
Image URLs in CSS
Multiple bundles broke my app(properties file)
centering inside div