Home › Forums › CSS › CSS/WordPress menu problem › Re: CSS/WordPress menu problem
June 6, 2010 at 5:25 pm
#77195
Participant
Easiest way I can think of is to give a #id to each main <li>
so something like:
Code:
li#about {
background: #fff url(../../images/1/menu_button_orange.jpg) left top no-repeat;
}
background: #fff url(../../images/1/menu_button_orange.jpg) left top no-repeat;
}
li#register {
background: #fff url(../../images/1/menu_button_pink.jpg) left top no-repeat;
}
giving each main list item a new id, then targeting each #id with its own colored background image. It’s quite a bit of CSS code, but should work just fine.
Hopefully you know what I mean, if not let me know and I can explain it in more detail.