In the opacity tutorial, there's example code for having a background image
background:url(klematis.jpg) repeat;
I've tried the equivalent for my web page, but it can't find the image. My images are located at;
projectName/Web Pages/resources/images/an_image.jpg
I've also noticed that the html tutorial for loading images doesn't work either.
<img src="url" alt="some_text"/>
It DOES work however, when I do;
<img src="../resources/images/an_image.jpg" alt="some_text"/>
Not sure why. Putting a file path like the one above doesn't work for the style sheet, just for ordinary html code. My web pages are located at
projectName/Web Pages/someJSPpage.jsp
3 Votes


Answers