Question

I am working on the Mystile theme by WooThemes. I have used custom CSS to change the color of the background, footer and side wings. But, I can't change the color of the navigation bar.
Navigation Bar

In the screenshot, the navigation bar has some shade of grey but I would like to have it in white i.e. #FFFFFF. Please help me.

Was it helpful?

Solution

In the css file change:

#header #navigation ul.nav > li a
{
    background: #fcfcfc;
}

to

#header #navigation ul.nav > li a
{
    background: #fff;
}

and it should change the colour.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top