Okay
  Public Ticket #4104159
Change button text color on hover in header
Open

Comments

  • dsylvia70 started the conversation

    I am trying to figure out how to change the button text hover color in the header. as well as change the text on the button.

    Attached files:  Screenshot 2025-06-26 at 7.00.20 PM.png

  •  3,234
    Andrew replied

    Hi Sylvia,

    Thank you for getting in touch.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #header-outer .menu-item-3304 > a:after {
        background-color: #fff;
    }
    
    #header-outer .menu-item-3304[class*="menu-item-btn-style-button"] > a:hover, #header-outer #top nav .sf-menu li.menu-item.menu-item-3304[class*="menu-item-btn-style-button"] > a:hover {
        color: #000 !important;
    }

    You can adjust the CSS and add the colors you want displayed.

    Try that and let us know how it goes.

    Thanks,