Okay
  Public Ticket #2409260
menu hover color and "submit" text color
Closed

Comments

  •  11
    Eshen started the conversation

    Hi, I'm wondering how can I change the color of the menu hover effect?

    and I need help with the text color of submit button. I don't want it in white but find no place to correct it... Thanks.

  •  1,558
    Laborator replied

    Hi Eshen,

    Go to Custom CSS and replace the #f7c016 for the menu and contact submit button:

    /* Menu: Hover Style */
    .main-header.menu-type-standard-menu .standard-menu-container.menu-skin-dark div.menu>ul>li>a:hover span,
    .main-header.menu-type-standard-menu .standard-menu-container.menu-skin-dark ul.menu>li>a:hover span {
        background: #f7c016;
    }
    /* Menu: Active menu style */
    li.current-menu-item a span {
        background: #f7c016;
    }
    /* Contact: Submit button color */
    .contact-form .button {
        background: #f7c016 !important;
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  11
    Eshen replied

    Works great. Thank you.