Changing Nav Bar Background colour

Hi, for the life of me I cannot figure out how to change the nav bar background color without adding CSS which I would not expect to have to do on a premium theme like this just to make such a simple change.
Also, I changed the nav bar link text color but again cannot find a way to change the circle around the active link: http://take.ms/f2N0t

Please help with this
Thanks

Hi @danbentonsmith,

Thanks for writing in.

I assume you’re referring to Pro theme, you can change your header bar background through it’s setting. As for the circle, it’s specific to a stack (not part of global options) so yes , it will require custom CSS.

Example is this

.x-navbar {
background: #ccc;
}
.x-navbar .desktop .x-nav>li>a:hover>span,
.x-navbar .desktop .x-nav>.x-active>a>span, .x-navbar .desktop .x-nav>.current-menu-item>a>span {
    border-color: #000;
}

Then just change the styling according to your preference.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.