Awesome Font - Question | JoomShaper

Awesome Font

EW

Erwin Weilbaecher

SP Page Builder 1 day ago

Hello,

I have the following problem: Font Awesome is disabled for the menu. It's no longer appearing. How do I remove the placeholders? Thanks for your help.

https://acrps.org/

Erwin

0
6 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 day ago #220726

Hi

Thanks for contacting us. You can use this CSS in your custom.css file

body.ltr .sp-megamenu-parent>li.sp-has-child>a:after, body.ltr .sp-megamenu-parent>li.sp-has-child>span:after{
display: none;
}

-Regards.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 day ago #220733

Hi Erwin,

Problem can be caused by two reasons:

  1. You disabled or didn't enabled Font Awesome in Template Options > Advanced
  2. Or JSpeed extension damaged the FA code (or both reasons).

Somehow you have that

info_3092_2026.png

with "???" as you can see

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 day ago #220734

If you can use Custom CSS in your template please try that

#sp-header .sp-megamenu-parent > li.sp-has-child > a::after, 
#sp-header .sp-megamenu-parent > li.sp-has-child > span::after {
  content: "\2B9F"; margin-left: 3px; }

It will display arrow but not from FA collection. info_3093_2026.png


OR better alternative

#sp-header .sp-megamenu-parent > li.sp-has-child > a::after, 
#sp-header .sp-megamenu-parent > li.sp-has-child > span::after {
  content: "\2BC6"; font-size: 13px; margin-left: 3px; }

info_3094_2026.png

0
EW
Erwin Weilbaecher
Accepted Answer
1 day ago #220737

Hello,

Thank you so much for the replies. For privacy reasons, I don't want to use Awesome Fonts. Therefore, I'd like to disable them in SP Page Builder and Helix Ultimate. Which of your three suggestions for Custom.css is the correct one? Thanks

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 day ago #220738

yes, custom.css .. but you can add also inside Template Options > Custom Code > CSS


ABOUT FA >> https://www.joomshaper.com/documentation/sp-page-builder/google-fonts-and-dsgvo-gdpr#font-awesome-vs-dsgvo-law

0
EW
Erwin Weilbaecher
Accepted Answer
1 day ago #220740

Thanks for your help!

0