Notifications
Clear all

wpForo 1.x.x [Solved] Topic title font size changing

4 Posts
2 Users
2 Likes
1,032 Views
Posts: 4
Topic starter
(@highlander)
Active Member
Joined: 3 years ago

Hello,

i am just trying to change the topic titel font size of wpforo. Actually it always seems to set it on "42.75px;" .. and i dont know why.

 

Would like to set it on 20px so big topics dont break anymore. (see picture)

i also added the css code to override:

#wpforo #wpforo-wrap #wpforo-title {
    font-size: 20px;
    padding: 2px 0 10px 0;
    margin: 1px 0 15px 0;
    font-weight: 500;
}

but this didnt change anything. Maybe you have some idea? CTRL+F5 .. did it many times.

Thank you!

3 Replies
Posts: 4
Topic starter
(@highlander)
Active Member
Joined: 3 years ago

i would like to look like on this screenshot:

 
Edit:
when i examine my css with the browser (chrome) the css is like this: (from where it gets the 42.75px)? 
element.style {
    font-size: 42.75px;
}
#wpforo #wpforo-wrap #wpforo-title {
    color: #333333;
}
#wpforo #wpforo-wrap #wpforo-title {
    font-size: 20px;
    padding: 2px 0 10px 0;
    margin: 1px 0 15px 0;
    font-weight: 500;
}

here on wpforo the elemet.style is empty:

element.style {
}
#wpforo #wpforo-wrap #wpforo-title {
    color: #333333;
}
#wpforo #wpforo-wrap #wpforo-title {
    font-size: 20px;
    padding: 2px 0 10px 0;
    margin: 1px 0 15px 0;
    font-weight: 500;
}
1 Reply
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3650

Hi @highlander,

Add this CSS code in "Custom CSS Code" field from Dashboard > Forums > Settings > Style's Tab

#wpforo #wpforo-wrap #wpforo-title {
    font-size: 20px !important;
}
Posts: 4
Topic starter
(@highlander)
Active Member
Joined: 3 years ago

it works perfectly now! THANK YOU!