I tried the codes below in the Quick CSS section of Enfold Theme Options Styling. Here is the code:
#header_meta {
background: #0772A1;
}
.header_color .sub_menu > ul > li > a {
color: green;
}
.header_color .sub_menu > ul > li > a {
color: orange;
}
But only the top bar colour changed. The rest did not happen. Am i doing something wrong?
Regards,
Hi,
Try this, though I am not sure what you are trying to do since your last 2 css blocks are identical above
#header_meta {
background: #0772A1;
}
#top ul:first-child > li > a {
color: green;
}
#top ul:first-child > li > a:hover {
color: orange;
}
To continue go to post https://kriesi.at/support/topic/different-color-for-top-bar-menu-and-menu-hover
Thanks,
Nick