Home Forums WordPress Themes – Premium Celestial (Celestial Reloaded) there is not a navigation customization Reply To: there is not a navigation customization

#21927
Rachel
Member

I found the code for the nav color in the parent theme editor for the css and changed the color, added a plugin for custom css and added the code below but it still does not change the navigation color. I do not know why the navigation options are not showing up when the theme is installed. Please help. Thank you.

.main-navigation li a:hover {
color: #da251d;

}
.main-navigation ul li:hover > ul {
display: block;
background-color: #f6f6f6;
border-bottom:6px solid #da251d;
border-radius:12px;
-webkit-box-shadow: 0px 7px 7px 3px rgba(0, 0, 0, .25);
box-shadow: 0px 7px 7px 3px rgba(0, 0, 0, .25)
}
/* make the main level menu items active with a colour */
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
color: #da251d;
font-weight:bold;
}
/* make the submenus active with a background */
.main-navigation ul.sub-menu li.current-menu-item > a,
.main-navigation ul.sub-menu li.current-menu-ancestor > a,
.main-navigation ul.sub-menu li.current_page_item > a,
.main-navigation ul.sub-menu li.current_page_ancestor > a {
color: #da251d;
background-color: #ededed;
}