Site logo

Archived topic

How to style navigation menu

7 replies · Started by Kaleem on July 10, 2017

Viewing posts 1–8 of 8

Hi sir, please could you show me how to style menu . i will like to change the text color and the background color. thank you in advance.

great, that really helped!

but please how can i do it specifically for mobile only?

You will have to use custom css for that, try this changing the hex values as you desire

@media ( max-width: 768px ) {
    .main-navigation {
        background-color: #222222;
    }
    .main-navigation .main-nav ul li a, 
    .main-navigation .menu-toggle {
	color: #FFFFFF;
    }
    .main-navigation .main-nav ul li > a:hover, 
    .main-navigation .main-nav ul li > a:focus,
    .main-navigation .main-nav ul li.sfHover > a {
	color: #FFFFFF;
	background-color: #1e72bd;
    }
}

https://gist.github.com/generatepress/793804f553c25c70823c

nice one, it worked. thank you for your support.

Thanks Jamal!

Hi,

nice code and works well but I want to change active link and submenu colors on mobile menu. With that code how can I do these Jamal?

This archived topic is closed to new replies.