Tagged: custom social media icons, enfold
I have a site using Enfold and my client would like to use custom icons for the social media links rather than the icon-fonts that come with the theme. Is there a way to do this using images? I have searched forums to find issues about changing them to other icon fonts but nothing related to making them custom using images. There was one referencing using images but it was old and the code referenced is no longer in the php file that was mentioned. Please advise, thanks!!
Hi cybervise13!
You could use some CSS like so.
.social_bookmarks_twitter a::before {
content: none !important;
}
.social_bookmarks_twitter a { background: url("URL to your image") !important; }
Cheers!
Elliott