Hi – My client would like the green colored bar that is on his pages to be changed to match his logo color. I know a little CSS but not until I see all the code, can I find how to change it.
Thank you,
Cindy Mihalko
Thank you Anthony. It worked great. I should have asked about the navigation menu too…the color difference really shows now. What is the css script for that too, please.
Warm Regards,
Cindy
Try
.main-navigation .nav-menu li a {
color: blue!important;
}
.main-navigation .nav-menu li a:hover {
color: grey!important;
}
As examples.
Youll need important again.
Also dont forget about active, focus etc
Might need a bit of tweaking there.