Hi,
I would like to highlight one of my menu items by placing a colored background layer beneath it. Example image is attached.
Thank you!
Hi,
I would like to highlight one of my menu items by placing a colored background layer beneath it. Example image is attached.
Thank you!
Hi There,
Thanks for writing in!
As you are using X, there is no such option to make similar button other than custom CSS.
First you have to figure out the menu item class. Every menu item having a unique class name which is based on the item order. To find out the class name you have to use chrome dev tool.

Please check how to use chrome dev tool if you haven’t already.
After figure oout the class name please add this CSS to your theme Option -> global CSS
.menu-item-81 {
background: #333; /* please use your color code*/
}
Use your item class name in place of .menu-item-81.
Hope this helps!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.