Notifications
Clear all

wpForo 1.x.x [Solved] Change Fonts

7 Posts
2 Users
2 Likes
910 Views
Posts: 11
Topic starter
(@jason-wan)
Active Member
Joined: 4 years ago

WPForo as I see use a LOT of different fonts. Again I had search a bit and find out this topic:
https://wpforo.com/community/how-to-and-troubleshooting-2/change-font/

#wpforo #wpforo-wrap * {
font-family: "Arial Rounded MT Std", Arial, sans-serif !important;
}

I tried @Sofy solution and yes it works fine, sadly not all of the fonts are able to change (and I have no idea, how to change the others).

That code will work only with the font of the FORUM, but 

I would like to also change different fonts.

 

As for now I am aiming for "forum description" and "post" fields,

since those fonts have some characters issue.

 

My language is Polish, it is set to polish and I have problems with those characters.

6 Replies
Sofy
Posts: 4237
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

@jason-wan,

Please leave some example URL to allow us to debug the CSS conflict.

Posts: 11
Topic starter
(@jason-wan)
Active Member
Joined: 4 years ago

@Sofy

as for now I can only provide a simple screen, showing that the font is different in one spot.

Because all of the wpforo crashed because of some database error,

so I am at the very beggining (again), where I've been forced to find a stable hosting service.

1 Reply
Sofy
 Sofy
Admin
(@sofy)
Joined: 6 years ago

Support Team
Posts: 4237

@jason-wan,

put this CSS code as well:

#wpforo #wpforo-wrap .wpforo-forum-description {
font-family: "Arial Rounded MT Std", Arial, sans-serif !important;
}

It should solve the CSS conflict. 

Posts: 11
Topic starter
(@jason-wan)
Active Member
Joined: 4 years ago

@Sofy

Yes yes yes! 😀

It fix up, there is still one more place - the posts themself.

1 Reply
Sofy
 Sofy
Admin
(@sofy)
Joined: 6 years ago

Support Team
Posts: 4237

@jason-wan,

Try this CSS code: 

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-content p, #wpforo #wpforo-wrap .wpforo-revision-body p, #wpforo #wpforo-wrap .wpforo-post .wpforo-post-content span {
font-family: "Arial Rounded MT Std", Arial, sans-serif !important;
}
Posts: 11
Topic starter
(@jason-wan)
Active Member
Joined: 4 years ago

@Sofy

YES SIR! This solves the problem for me 😀

Thank you for help in this topic.