I wanted to know if I anyone can help me to create the following effect on the menu tabs like this : http://themefuse.com/demo/wp/lifestyle/
Im not using the above theme but I want to use the same effect they've used . All the tabs should have different color's on roll over.
PinkishHue
Member
Posted 11 months ago #
If you look at the source of your page, each link in the list (or each tab as you have worded it) should have it's own unique identifier such as:
<li id="menu-item-359" class="....
You can use these to style each one individually in your CSS file, e.g.:
li#menu-item-359:hover{
background:red;
}
Im not sure where exactly to add this ?
li id="menu-item-359" class="
PinkishHue
Member
Posted 11 months ago #
Do you have a link to your site? Then I can give you better instructions.