XF 2.1 Are we able to change the "Share" icon on posts?

BIG LLC

Active member
1603759004951.webp
This icon is not really standard on mobile phones.

Icons like this are more active and recognisable to most of our users on iOS:

1603759113969.webp

Is there an option? Style property? Or is it going to be an extra.css thing?
 
CSS:
.fa-share-alt::before {
content: "\f1e0" !important;
}

As you can see, this is the code for the icon in the post. You would just need to put the same thing in extra.less but change the f1e0 to the desired icon unicode and add the !important flag to over ride the style. The new icon should then show up.
 
Last edited:
CSS:
.fa-share-alt::before {
content: "\f1e0" !important;
}

As you can see, this is the code for the icon in the post. You would just need to put the same thing in extra.less but change the f1e0 to the desired icon unicode and add the !important flag to over ride the style. The new icon should then show up.
Thanks for that.
 
Top Bottom