Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #274363
    Giustiartstudio
    Participant

    Hi everyone!

    I would like to change link color of the main menu (arts,blog,press etc).
    About the active links they’re grey by default but I prefer white.
    About the hover ones they’re white by default but I prefer grey.
    Which code should I put on the additional CSS?

    Here the homepage

    Thank you in advance!

    #274396
    Skandha
    Participant

    @giustiartstudio: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To change color of menu links */
    #site-navigation a {
        color: red;
    }
    
    /* To change color of active link on the menu */
    .navigation-classic.absolute-header .main-navigation .menu > .current-menu-item > a {
        color: #fff!important;
    }
    
    /* To change the menu links hover color */
    #site-navigation a:hover {
        color: #888;
    }

    You can change the color according to your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

    #277965
    Giustiartstudio
    Participant

    It works! Now it’s perfect!

    Thank you!

    #278043
    Skandha
    Participant

    @giustiartstudio: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/bold-photography/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    #279053
    brandtki
    Participant

    This is great! This answered my question from another post! Thank you!

    #279129
    Skandha
    Participant

    @brandtki: Glad you found your answer. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change menu link color’ is closed to new replies.