Edit ONE Menu Item
-
I want to be able to make one menu item bold. It is the “search” link in my primary menu. I have it hidden on desktop with the following code:
@media screen and (min-width: 56.875em){ .menu-item-10114 { display: none; } }
I’m not sure that’s the best solution but it’s what I have currently. So you can only see the link on a mobile menu.
But what I’m really trying to do is BOLD the word “search” and also re-color it red. But nothing I do with “font-weight” or “color” makes any difference.
I’ve tried this:
@media screen and (min-width: 56.875em){ .menu-item-10114 { display: none; font-weight: bold; color: red; } }
and it doesn’t work.
I’ve tried adding !important and that doesn’t work.
Any thoughts? Any help? The correct implementation of this would be awesome. Thank you in advance.
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Edit ONE Menu Item’ is closed to new replies.