Font Awesome - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Font Awesome

S

sef

Helix Framework 3 years ago

Hello,

When i globally disable font awesome, instead of the icon of this font are diplayed some ASCII "square" like a "missing font". This happend in the menù signle voice and somewhere else, problably in the navigation.

How can I disable font awesome so the font is not "call" by any item of the framework and website?

Thank you

0
3 Answers
Pavel
Pavel
Accepted Answer
3 years ago #90858

Hi. Helix is designed to use Font Awesome. The font can be disabled, but the font shutdown cannot affect the rigidly encoded structure. Therefore, you need to override everything that causes problems through CSS.

For example, old code with using Font Awesome

.fas.fa-cogs::before {
    content: "\f085";
}

New code

.fas.fa-cogs::before {
    content: "your own icon or image";
}
/*Or*/
.fas.fa-cogs::before {
    content: ''; /*empty*/
/*and something new here for this selector*/
}
0
S
sef
Accepted Answer
3 years ago #90862

Thank you

0
Anne
Anne
Accepted Answer
Support Agent 3 years ago #90878

Hello Lorenzo,

Thanks for contacting us. You can follow Pavel's instructions . And @Pavel thanks for the help again .

-Regards

0