I\'m making a website Using JSF and richfaces, but I need to do some background images on the drop down menu labels. I saw you can use the style attribute by doing
My folder structure is as follows:
web pages->resources->css //css pages
web pages->resources->pics //images
web pages //xhtml files
Try the below:
background-image :url("../pics/logo.gif");
.. moves you up one folder level /pics moves you into the pics directory /logo.gif gives you the file
Hope this helps.