Notifications
Clear all

[Solved] Font Awesome Icons not showing in forum

7 Posts
2 Users
1 Reactions
623 Views
Posts: 20
Topic starter
(@eduexplained)
Eminent Member
Joined: 1 year 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: 1 year ago

here is another screenshot

Chris
Posts: 3649
(@chris)
Famed Member
Joined: 3 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: 1 year 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: 1 year 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: 3 years ago

Famed Member
Posts: 3649

@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: 1 year ago

Thank you!