Notifications
Clear all

wpForo 1.x.x [Solved] FONT

6 Posts
3 Users
2 Likes
589 Views
Posts: 4
Topic starter
(@gabiq)
Active Member
Joined: 4 years ago

Hi there, i dont know how to change forum font.. it´s look very bad.

Anyone can help me?

Tnx.

https://true-games.com/

5 Replies
Alvina
Posts: 1869
Moderator
(@alvina)
Member
Joined: 4 years ago

Hi @gabiq,

Please navigate to Dashboard > Forums > Settings > Styles admin page, put  the following CSS code in the "Custom CSS Code" textarea:

#wpforo #wpforo-wrap * {
font-family: Merriweather, Arial, serif;
}
.fa, .far, .fas {
font-family: "Font Awesome 5 Free" !important;
}
.fab {
font-family: "Font Awesome 5 Brands" !important;
}

Please don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.

2 Replies
(@gabiq)
Joined: 4 years ago

Active Member
Posts: 4

@alvina Thank you.

I put that lines but it is still weard....i have a lot of space between leters.

(@gabiq)
Joined: 4 years ago

Active Member
Posts: 4
Robert
Posts: 10499
Admin
(@robert)
Support Team
Joined: 8 years ago

Hi @gabiq,

You've damaged the whole forum font by adding 5.5px letter space using Elementor. Please remove this attribute.

If you can't find and can't remove it, you should letter-spacing:0px to all elements of wpForo forum. Put this CSS code in the Custom CSS code textarea in Dashboard > Forums > Settings > Styles admin page. Save it, delete all caches, navigate to forum front-end and press Ctrl+F5 to reset browser cache:

#wpforo #wpforo-wrap * {
     letter-spacing: 0px;
}

 

1 Reply
(@gabiq)
Joined: 4 years ago

Active Member
Posts: 4

@robert Thank you. That was the problem.

Solved.