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.
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" />
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?
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; }