Navigation color change and container change

Hi there,

I was trying to change the header background color, but I also had CSS to move the logo farther to the left. They don’t want to work together, so any help?
I had this CSS for the container width to get the logo and navigation menu to use more space:
.x-navbar-inner .x-container.max.width {
max-width: 90%;
width: 95%;

But when I went in to add the background color:
.x-navbar {
background-color:#d3d3d3;
}
it then cancels out the color change… https://rrkingdomccc.wpengine.com/

Hi @tkcostello,

Thank you for writing in, your first block of CSS code above is missing a closing } bracket.

Please update that to:

.x-navbar-inner .x-container.max.width {
max-width: 90%;
width: 95%;
}

You can use this tool for checking custom CSS.

Hope it helps,
Cheers!

Oh geez. LOL thank you. Works perfectly now.

Glad we could help.

Cheers!

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