Fontawesome - Question | JoomShaper

Fontawesome

MH

Michael Hunschock

SP Page Builder 1 year ago

Hello, I would like to add the Fontawesome External Link icon behind the links I added in the text editor. What code do I need to enter in the text box behind the links for this to work. Thanks a lot!

![https://1drv.ms/u/s!Atb-9lITsvASzcldL_CHyt_GSlOALw?e=aNEPXr]

0
4 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #102863

Hi Mike,

you can do it using at least two different (alternative) methods:

  1. You can use custom CSS for that and define extra FA icon for all links from specific addon, class name or row.
  2. Or use old classic method - switch to HTML mode - click on < > and add html before

<i class="fas fa-external-link-alt"></i> <a href="/.....">FIRESTORM</a>

(in case of ... use RAW HTML addon instead, becuase sometimes TinyMCE may cut off empty tags)

some webmasters suggest to use <span> instead of <i> for FA - so keep it in mind.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #102864

I know that we are not codecademy.com to teach here CSS, but as a teacher, I can share you extra tip for (1)

#sp-top2 a::before {
  content: "\f35d";
  padding-right: 5px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}

To get that - in less than 90sec.

info_165_2023.jpg

0
MH
Michael Hunschock
Accepted Answer
1 year ago #102924

Hello Paul, thanks for help. I really have to say that I am totally thrilled with your support (the whole team). You are always so helpful and I learn a lot and through that I really get ahead. You don't find that so often. Awesome!

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #102927

Thanks a lot.


Being with Joomla since 2005 obliges me to share knowledge.

0