Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] Font Awesome Icons not showing in forum

7 Posts
2 Users
1 Reactions
1,154 Views
Posts: 20
Topic starter
(@eduexplained)
Eminent Member
Joined: 3 years ago

Hi there, I can't seem to get the f514 icon to show on my website. I am using the code "fa-brands fa-wolf-pack-battalion" in the member rating section in settings. I have tried installing the plug-in but this hasn't worked. Please could you advise how to fix this? Thanks

Topic Tags
6 Replies
Posts: 20
Topic starter
(@eduexplained)
Eminent Member
Joined: 3 years ago

here is another screenshot

Chris
Posts: 3611
(@chris)
Famed Member
Joined: 4 years ago

Hi @eduexplained,

You have a CSS Code which conflict with the icon, it's not created by wpForo.

#wpforo #wpforo-wrap *:not(.fa):not(.fas):not(.far):not(fab) {
    font-family: "Arial Rounded MT Std", Arial, sans-serif;
}
1 Reply
(@eduexplained)
Joined: 3 years ago

Eminent Member
Posts: 20

@chris hi chris, yes this was to change the font of the username. Is there another way to cha get the font of the user name without it conflicting?

Posts: 20
Topic starter
(@eduexplained)
Eminent Member
Joined: 3 years ago

I have deleted this custom css code. Thank you it seems to work now but I would like to change the font of the @username. Is this possible?

1 Reply
Chris
(@chris)
Joined: 4 years ago

Famed Member
Posts: 3611

@eduexplained,

Use the same CSS with the Icon class in :not attribute

#wpforo #wpforo-wrap *:not(.fa):not(.fas):not(.far):not(fab):not(.fa-wolf-pack-battalion) {
    font-family: "Arial Rounded MT Std", Arial, sans-serif;
}
Posts: 20
Topic starter
(@eduexplained)
Eminent Member
Joined: 3 years ago

Thank you!