For this website. https://kennyarnoldfoundation.org. We would like the header button background that says 30-30 to be kelly green color so it stands out from the other buttons.
Hi @rkassebaum,
You can add a class to the menu item then add a custom CSS to set a background color to that menu item.
To do this, please go to WP Admin > Appearance > Menus then click on the Screen Options link on the top right part of the page.

Once click, you should see a collapsed panel. Make sure that CSS Classes is active under Show advanced menu properties.

Go to your menu items and you should see the CSS Classes (optional) field under the menu item settings:

Add a class to the menu item that you want to target. In this example, we will use the class highlight to the menu item.
Once the menu is saved, go to X > Theme Options > CSS then add this code:
.x-navbar .desktop .x-nav > li.highlight {
background-color: green;
}
Feel free to change the value in the code above.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.