1- How do I change the font color for (Email address hidden if logged out) (both off and hover states) in the top elements color?
2- How do I remove the underline on hover from “Support WSMS” and “Login” in top elements area? This goes back to this thread but it was closed without it being completed – https://kriesi.at/support/topic/add-icon-to-secondary-menu-items/
My site – http://staging.wsmsnyc.org.s167849.gridserver.com/
Hey navindesigns,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#header_meta .sub_menu li a {
text-decoration: none!important;
}
.phone-info a:hover {
color: red!important;
}
.phone-info a {
color: orange!important;
}
Best regards,
Yigit
Thank you. Few more times.
1- How do I change the hover color for (Email address hidden if logged out) ?
2- How do I change the hover color for “Support WSMS” and “Login” ?
3- Is it possible to change the heart color to red that is next to “Support WSMS” ?
Hi!
1 – You can adjust following code i posted above
.phone-info a:hover {
color: red!important;
}
2 & 3
#header_meta .sub_menu li a:hover {
color: orange!important;
}
li#menu-item-3287 a:before {
color: red;
}
Regards,
Yigit