• Resolved jespersson

    (@jespersson)


    Hi!

    I’m using beaver builder to build the pages on my website. On one page I’ve used the custom menu widget to create two custom menus. However I don’t like the blue font colour as it doesn’t fit with the two main colours of my website. Is there any way to change that with CSS to a custom colour?

    This is the page: https://www.jespersson.com/home-create-website/tutorial/

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You could add this custom CSS to change the link colours:

    .widget_nav_menu li a {
        color: #000000;
    }

    And if you want to add a hover colour:

    .widget_nav_menu li a:hover {
        color: #000000;
    }

    I have specified black in the examples above but you can add any colour you like.

    Let me know how you get on.

    Thread Starter jespersson

    (@jespersson)

    Excellent, works like a charm! Thanks a lot!

    Great ?? No problem!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WordPress custom menu widget’ is closed to new replies.