- This topic has 1 reply, 2 voices, and was last updated 4 years, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.


Home › Forums › Pro Themes › Fondness Pro › How to change the color of the search icon and social icons in header
Hi can you help me with CSS for changing the color of the search icon and social icons in header to white instead of black?
Also, how can I change the font color of hover text in the header?
the site is https://roadnotaken.com/
Thanks
Holly
@HOLLYHERITAGE, Please add this CSS into additional CSS to change the color of the social and search icon
@media screen and (min-width: 1024px){
.absolute-header #masthead .main-navigation .social-menu ul li a svg,
.absolute-header .main-navigation ul.nav-menu > li > a svg{
fill: #fff;
}
}
.main-navigation .social-menu ul {
position: initial;
}
@media screen and (max-width: 1023px){
#primary-menu > li > a {
color: black !important;
}
}
For the hover color please add this CSS
.main-navigation a:hover, .main-navigation a:focus, .main-navigation ul.nav-menu > li > a:hover{
color:#06f9f9 !important;
}
Please change the color code as per your requirement.
| Cookie | Duration | Description |
|---|---|---|
| cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
| cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
| cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
| cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
| cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
| viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |



