Site logo

Archived topic

Primary navigation color not getting change in mobile

3 replies · Started by _blank on April 3, 2021

Viewing posts 1–4 of 4

Hi,

I have selected Green background color for my primary navigation bar.
but i want to change the color of the sticky bar to White. Please let me know, if it is possible to do that.

I would also want to change the color of the font to White in stick bar.

Please let me know how can i do that.

Hi there,

You could use this CSS to change background color of sticky navigation to white:

nav#sticky-navigation {
    background-color: #fff;
}

And I assume you want the text in sticky navigation to be black instead of white? Try this CSS:

#sticky-navigation ul li a, #sticky-navigation .menu-toggle {
    color: #000;
}

Let me know :)

Hi,

It Worked like a charm.
Thank you so much :)

Glad to hear that :)

This archived topic is closed to new replies.