I seem to be having trouble getting this to work correctly. I have a few menu items that require different background styles than the global settings.
Here is the working global setting...
#left #current a {background-image: url(../images/leftbuttonactive.png); color: #000;}
However, I need to apply a unique background image to certain items that consist of 2 lines of text, indicated by .itemxxx. Below are my attempts at achieving this, none of which have been successful.
#left #current .item136 a,
.item136 #current a,
#current .item136 a,
#current .item136 > a,
#left #current .item136 a:link,
#left ul li.item136 li.active a:link,
#left #current .item136 a,
#left li.item136 #current a,
background-image: url(../images/leftbutton2lineactive.png);}
The above code works well for :hover or :visited states...
#left li.item136 a:hover
I've experimented with various variations (as shown in the second block of code) but haven't had any success. Any suggestions?