Hello
I want to chance background color of each main menu button on enfold theme.
For example: Home button background grey, Our company button bacground color red….
Can you help me on this?
Thanks
Hey petrosgr!
Using menu item ID’s it is possible with custom CSS. You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
Example would be
li#menu-item-755 {
background-color: red;
}
Best regards,
Yigit
Thanks Yigit! It works!