Notifications
Clear all

wpForo 1.x.x [Solved] How to set the size and font like on this forum

7 Posts
3 Users
1 Reactions
1,399 Views
Posts: 18
Topic starter
(@azzidoqsc)
Eminent Member
Joined: 4 years ago

Hello all,

I want to have the same size and font for the posts like here. I tried to increase the size into Style menu but it seems it does not work. It looks quite ugly: https://www.laptopu.ro/community

thanks

6 Replies
Posts: 991
Moderator
(@martin)
Support Team
Joined: 9 years ago

@azzidoqsc,

wpForo inherits the font from your WordPress theme. There are many sections and parts in the forum. So, if you want us to help you make the font size bigger you should show the section with some screenshot, so we could provide with a correct CSS code to change it.

4 Replies
(@azzidoqsc)
Joined: 4 years ago

Eminent Member
Posts: 18

@martin

Here are the screenshots:

1. I want to change the font and size of topics to look like here on wpforo (Topic Title, username, time):

 

Alvina
Moderator
(@alvina)
Joined: 5 years ago

Member
Posts: 1861

@azzidoqsc,

Please use the following CSS code:

#wpforo #wpforo-wrap .wpfl-2 .wpforo-topic-title{
font-size: 16px !important;
}
#wpforo #wpforo-wrap .wpfl-2 .wpforo-topic-start-info{
font-size: 11px !important;
}
#wpforo #wpforo-wrap .wpfl-2 .wpforo-topic-stat-lastpost{
font-size: 13px !important;
}

The CSS code should be added in the Dashboard > Forums > Settings > Styles admin page "Custom CSS Code" textarea.

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

(@azzidoqsc)
Joined: 4 years ago

Eminent Member
Posts: 18

@martin

2. I want to change font and size for topics text like on wpforo:

 

Alvina
Moderator
(@alvina)
Joined: 5 years ago

Member
Posts: 1861

@azzidoqsc,

Use the following one:

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-content{
font-size: 14px !important;
}
Posts: 18
Topic starter
(@azzidoqsc)
Eminent Member
Joined: 4 years ago

I managed to do it. Thanks @Alvina