Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1419538

    hwolfe
    Participant

    Hey, guys!

    How can I change the color for one specific menu item? I searched the forum but nothing I found worked, or I didn’t do it right.

    It’s the New Patient item here. Need to change both color and hover color:

    http://f47.5cc.myftpupload.com

    #1419539

    hwolfe
    Participant
    This reply has been marked as private.
    #1419796

    Prasant Rai
    Moderator

    Hello There,

    Thanks for writing in!

    You can add this under Custom > CSS in the Customizer:

    li#menu-item-510 a {
        color: #ddd;
    }
    
    li#menu-item-510 a:hover {
        box-shadow: inset 0 4px 0 0 hsl(0, 0%, 68%);
    }

    Thanks.