Hello,
How can I control the color of my social icons in a page (not a sidebar or menu)? Would like to control the hover color too.
What are the css classes?
Thanks guys,
Hey Itai,
Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
Jordan
Yes, of course:
The social links in the page
http://heaven11audio.com/contact-us
Hi,
Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your elements and give them a custom CSS class seperately and then add following code to Quick CSS in Enfold theme options under General Styling tab
.your-custom-class-for-twitter a.av-icon-char:hover {
color: red!important;
}
.your-custom-class-for-twitter a.av-icon-char {
color: green !important;
}
Best regards,
Yigit
Ok great, done, but how do I get rid of the circle around the social icon or change it’s color?
Right now I find the yellow too distracting.
Many thanks,
i
Hi!
Please add following code to Quick CSS as well
.your-custom-class-for-twitter a.av-icon-char:hover {
border-color: red!important;
}
.your-custom-class-for-twitter a.av-icon-char {
border-color: green !important;
}
Regards,
Yigit
fantastic!