Tagged: change, enfold, social icon
Hey is it possible to add an social icon to the sub navi in the header?
I cant find the png`s for that..
I have the same problem with the arrow icon on the portfolie item (the roll-over icon).
I want to change it with an individuel arrow..
Thanks a lot, Jan
Hi,
1.) The social icons use the entypo fontello font. Right now, there is no easy way of adding a social button. Please refer to this link and follow Nick’s or my instruction: https://kriesi.at/support/topic/youtube-icon
2.) You can change the arrow on css > base.css, find this code:
.image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}
Change the content property with another icon from entypo fontello. Refer to link for the entypo character maps: http://www.entypo.com/characters/
Example, we’ll use the phone icon(U+1F4DE):
.image-overlay .image-overlay-inside::before{content:"1F4DE"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"1F4DE";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"1F4DE";}
You can combine different icons.
Regards,
Ismael