menou buttons

  • Unknown's avatar

    Can I change the color (from white to black) of the menu buttons?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi @grecomusica,
    I tried out your theme(Affinity) and i cannot find any open to change the menu colors(from the Colors option in the customizer).

    So i suppose you have to use CSS to change the colors of the menu. You will need a Premium or a Business Plan to be able to work with CSS on your site.

    Read more about it here:
    https://en.support.wordpress.com/custom-design/
    https://en.support.wordpress.com/custom-design/editing-css/

    If you are already on one of the paid plans mentioned above, you can use this CSS code to change the color to black:

    .main-navigation a {
        color: black;
    }

    The menu buttons/texts also controls the colors of the active page and the visited page. So to customize them too… Use this CSS code:

    // current page menu color
    .main-navigation .current_page_item > a, .main-navigation .current-menu-item > a {
        color: grey;
    }
    
    // visited page menu color
    .main-navigation a:visited {
        color: black;
    }

    Hope this helps :)

    Request to moderator:
    Please move this topic to the CSS sub-forum.
    Thanks :)

  • The topic ‘menou buttons’ is closed to new replies.