Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #318753
    masnasser
    Participant

    Hello,

    I would like to change the colour of menu items (Home, Services, etc.) but I can’t figure it out.

    I want the colour by default to be blue (#0b438c) and when you hover over it I want it to be orange (#f44e22). I want the selected page to be the same orange as well. How can I do that?

    Thanks for the help!

    #318769
    tikaram
    Keymaster

    @masnasser Login to your WordPress admin section. After you are logged insert the link given below after the site url .
    https://your-site/wp-admin/customize.php
    You will need to replace your-site with the actual URL of your site.
    Click on additional css and add the following css.

    .wp-block-navigation .wp-block-navigation-item__content:hover
    {
      color: #f44e22 !important;
    }
    
    .wp-block-navigation .wp-block-navigation-item__content {
      color:#0b438c !important;
    }

    Let me know if this helps you out.

    Regards,
    Tikaram

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Change Menu Items Colours’ is closed to new replies.