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
.rich-ddmenu-label {
background-image: url("images/the_image.gif");
}
But that doesn't seem to even try and put a image anywhere.
I can use an image using
<h:graphicImage/>
I don't know how to put text on top of it though.
What am I doing wrong? How do I insert a background image behind some text?