Hello! Can you post your site URL so I can take a look? Thanks!
Hey there! 🙂
Do you have a link to your site? I could tell you easier that way.
Some themes have custom CSS sections and several colors to use, if yours doesn’t, you could install this plugin too add custom CSS without touching the style.css file:
http://wordpress.org/plugins/simple-custom-css/
But I’d need a link to your site to tell you what code to add.
Cheers!
The site is
http://thehiddenveggie.com
Thanks so much! Any help is really appreciated
Hey there 🙂
To change the turquose (add in a custom CSS):
.main-navigation li:hover > a {
background: #f3f3f3;
border-top: #FF0000 solid 4px; /* The color you want, here’s red */
padding-top: 16px;
}
For the bright green:
a {
color: #0000FF; /* Change here, this is blue for example */
text-decoration: none;
}
For its hover:
a:hover, a:active {
outline: 0;
color: #00FF00; /* Change here */
}
Thanks! I added it to the Custom CSS section in my Theme Settings
It works perfectly for the links and the link hover but it’s not working for the menu hover color (not changing the turquoise.
This is what I put in
.main-navigation li:hover > a {
background: #f3f3f3;
border-top: #ed503b solid 4px;
padding-top: 16px;
}
a {
color: #ed503b;
text-decoration: none;
}
a:hover, a:active {
outline: 0;
color: #000000;
}
The color I want for the hover is a kind of earthy green (#8c9743)
Also, if you can tell me how to change the color of the search bar (right now it’s a bright green). That’s way less important to me than the hover color though.
Thank you SO MUCH for your help!
Try overriding it with an ‘!important’:
.main-navigation li:hover > a {
background: #f3f3f3;
border-top: #8c9743 solid 4px !important; /* Here */
padding-top: 16px;
}
For the search button:
.widget_search input[type=submit] {
display: inline;
background: #0000FF !important; /* Color here */
border: none;
padding: 7px 15px;
height: 29px;
box-shadow: none;
border-radius: 0px;
border-bottom: #00FF00 solid 5px !important; /*Bottom color here*/
position: relative;
top: -3px;
color: #fff;
text-shadow: none;
text-transform: uppercase;
}
Thanks for your help Meiji.
The search bar worked perfectly but I can’t get the menu bar hover to work no matter what. I’ve tried putting it in different spots (custom CSS section and in the custom style editor.php under editor). I tried putting it above the search edits, and the link hover edits….below those edits…in between those edits.
with important…without important.
I’m completely lost for what to do from here. It’s baffling me that nothing is working to change it.
any ideas from here?
Hi 🙂
Try this:
.main-navigation a:hover {
background: #f3f3f3;
border-top: #8c9743 solid 4px !important;
padding-top: 16px;
}
YOU ARE MY HERO!! thank you so much!!
that worked perfectly 🙂