• Resolved omg5

    (@omg5)


    How would I change the color of one menu title. Example if my menu was…

    Home | About | Store | Contact

    and I wanted all the menu titles to be black but the “Store” to be red, how would I make only “Store” red?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Rui Guerreiro

    (@takanakui)

    Hi @omg5,

    This isn’t related to WP Mobile Menu but you can inspect the elements in the browser and use the menu item ID to target it with CSS.

    Hope it helps.

    @omg5 : In case this helps, once you have found your menu ID, you must add this to CSS:

    #menu-item-XXXX a {
    color: #YYYYYY;!important
    }

    #menu-item-XXXX a:hover {
    color: #YYYYYY;!important
    }

    X is your menu ID (check online how to have it it’s fairly simple)
    Y is for the color code.

    The first block is for the normal color and the second one is for the color on hover.

    This will work on desktop, I don’t know how to change the color of only 1 menu element on mobile.

    • This reply was modified 4 years, 9 months ago by maps1990.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change color of one menu title’ is closed to new replies.