Notifications
Clear all

wpForo 1.x.x [Solved] Signature font size increased

4 Posts
2 Users
3 Likes
821 Views
selsebil
Posts: 88
Topic starter
(@selsebil)
Estimable Member
Joined: 3 years ago

Hello. I changed font size of posts from 14px to 15px. Then font size of signature was also increased. Now they both are almost in same size. Is there any way to reduce only signature font size? Screen capture is attached. 

Example page: https://www.bilimveyaratilisagaci.com/f/s/tesaduf-evren-duzen/

In addition, can I add HTML signature?

Thank you for everything.

3 Replies
Tutrix
Posts: 1266
(@tutrix)
Noble Member
Joined: 4 years ago

add this to custom css

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-signature p  {
    font-size: 12px !important;
}

Dashboard > Forums > Settings > Style (custom css)

html, you can use the images tag

example

 <img src="http://example.com/your-image.jpg" />
selsebil
Posts: 88
Topic starter
(@selsebil)
Estimable Member
Joined: 3 years ago
Posted by: @tutrix

add this to custom css

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-signature p  {
    font-size: 12px !important;
}

Dashboard > Forums > Settings > Style (custom css)

html, you can use the images tag

example

 <img src="http://example.com/your-image.jpg" />

 

Thank you very much. Also, can I change the color of signature?

Tutrix
Posts: 1266
(@tutrix)
Noble Member
Joined: 4 years ago

@selsebil

add the color to the code above

example red

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-signature p {
   font-size: 12px !important;
   color: #ff0000;
}

if you want the text go around the images

add this Code too 😉 

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-signature img {
   border: none !important;
   float: left;
   margin: 10px;
}