Navigation content size and color

Support Area Forums Umami Navigation content size and color

Viewing 6 posts - 1 through 6 (of 6 total)
URL to the page in question: http://
  • Author
    Posts
  • #31188

    Hi Bill,

    How can I change the navigation content font size and the background color?

    I tried to change the font size with the following code in the advance settings but it didn’t work:

    ul.menu li {
    font-size: 10px;
    text-align: left;
    }

    Thank you,

    Max

    #31193
    Bill Robbins
    Moderator

    Good Morning Max,

    You change those. In your WordPress dashboard, go to the Appearance section and select Theme Options. Then click on the Navigation tab at the top. You’ll find font and font size options for the navigation menu at the top. The options to change the various colors in the navigation menu will be below those.

    If you run into any trouble making those changes, let me know.

    Have a great day,
    Bill

    #31196

    Hi Bill,
    thank you for your help, but I need to change the background color of the drop-down menu and I can’t find the way.

    Thank you

    #31197
    Bill Robbins
    Moderator

    There isn’t a built in control for the drop down background since it’s semi-transparent. You can still change it though.

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      .slicknav_nav {
      	background-color: rgba(0, 0, 0, 0.81);
      }
      
    3. Replace the rgba(0, 0, 0, 0.81) with the color you’d like to use. You can use a hex color like #000000 for black or an RGBA color if you need it semi-transparent. There is a RGBA color picker at http://www.css3maker.com/css-3-rgba.html you can use.
    4. Update your settings.

    See how that works for you,
    Bill

    #31202

    Perfect!
    Thank you so much

    Max

    #31203
    Bill Robbins
    Moderator

    Happy to help out 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Navigation content size and color’ is closed to new replies.