Hi I’m trying to change the primary menu color on tpalawyers dot com to white and the text to blue. When they hover over them, i’d like the hover color to be blue and the text to be white. Are there some codes you might recommend I enter into the Custom CSS section to get custom colors for the menu? Thanks
Dear PeteGoGetter,
Please add the given CSS code in Additional CSS.
Appearance > Customize > Additional CSS
.main-navigation ul li.current_page_item a,
.home-icon.front_page_on{
background:#fff !important;
color:blue !important;
}
.main-navigation ul li.current_page_item a:before{
background:#fff;
}
.main-navigation ul li a:hover{
background:blue !important;
color:#fff;
}
.home-icon .fa{
color:blue !important;
}
.header-wrapper #site-navigation {
border-bottom: 5px solid #fff;
}
.header-wrapper .main-navigation ul ul.sub-menu li > a, .header-wrapper .main-navigation ul ul.children li > a {
background: blue;
}