Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

4 Posts
2 Users
2 Reactions
1,390 Views
Posts: 4
Topic starter
(@highlander)
Active Member
Joined: 4 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: 4 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: 4 years ago

Famed Member
Posts: 3611

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: 4 years ago

it works perfectly now! THANK YOU!