Thank you for this great theme. I have a question:
How do I change the top menu colors in the header?
For instance, i have links to Contact, About, Etc. They are white by default and on hover turn to yellow.
I would like to change the base color to purple and leave the hover as yellow.
The white blends into the background image. Thanks!
Hello @bababooey,
You should try this CSS code, will work like a charm:
#header .top-header .header-navigation ul li a {
color: purple;
}
Kind regards
Hi Ion.
Can you change the hover color so it changes to #f47c2e
or the opposit so the default color is #f47c2e and the hover is White?
Hello,
You should try this code:
#header .top-header .header-navigation ul li a:hover {
color: #f47c2e;
}
Regards