Changing the navbar font color and weight

Hello,

Is there a way to change the font color, type, and weight in the Navbar? I want to change the menu items and site title from the default black to gold.

Any help would be great!

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the menu font attributes by going to Appearance > Customize > Additional CSS and pasting it there.

/*Font Attributes*/
.main-navigation .menu li a {
    font-size: 13px;
    font-weight: 500;
    color: yellow;
}

Best Regards,
Support

That works great! Thanks! I was able to change the navbar menu items.

However, is there a way to also change the font settings of the site title to the left of the menu items?
I would like to make it match the color and thickness of the menu items.

Hello there,

You can try using this CSS code to change the title appearance:

/*Title appearance*/
.site-title {
    font-size: 30px;
    font-weight: 500;
    font-family: 'Raleway';
}

Best Regards,
Support