Hello,
In my Enfold website, the social icons in the footer are underlined and green on active mode.
How can I set the text-decoration to none and change the active color to white?
Regards,
Martin
Hey Martin,
Thanks for reaching out to us.
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.social_bookmarks a {
color: #ffffff !important;
text-decoration: none !important;
}
Best regards,
Jordan
Sorted. Thank you.