Earl
Well-known member
Is this possible?
I need to add 3 icons to one single button.
(Apple App store icon, Android, and desktop)
I have this in my LESS style sheet.
with this template code:
I managed to add app store button and desktop icon, both icons to the one single button.
but is it possible to get the 3rd icon (android) into the same button?
I need to add 3 icons to one single button.
(Apple App store icon, Android, and desktop)
I have this in my LESS style sheet.
CSS:
.button--icon--android { .m-buttonIcon(@fa-var-mobile-android-alt, 1.13em); }
.button--icon--appstore { .m-buttonIcon(@fa-var-app-store-ios, 1.13em); }
.button--icon--desktop { .m-buttonIcon(@fa-var-desktop-alt, 1.13em); }
with this template code:
HTML:
<div class="appInviteContainer appInviteContainer--breadcrumb">
<xf:button class="button--small button--icon button--icon--desktop" fa="fab fa-app-store">Install the App</xf:button>
</div>
but is it possible to get the 3rd icon (android) into the same button?