Hello,
my problem is that whenever someone uses the quote function in the forum, the quoted sentence looks giant and with a certain image as background. This happens because quotations are styled this way in the WordPress theme I am using. Is there a way to set a different, standard style for quotations in wpForo?
Thank you a lot!
Hi Zell,
Please leave an example URL to allow us to check and provide CSS solution.
Please navigate to Dashboard > Forums > Settings > Styles admin page, put this CSS code in Custom CSS Code textarea, save it, delete all caches and do Ctrl+F5 on the frontend.
#wpforo #wpforo-wrap blockquote:before {
display: none !important;
}
Thank you, it worked! Well, mostly. 🙂
https://www.omniacrystallis.com/forum/off-topic/serie-tv/#post-34
A you can see, all the text is bold (not just "Posted by") and it is centered. Is there a way to make this further little adjustment? Thanks again!
Hi @zell,
This comes from your current active theme. It adds some additional classes and makes a conflict with wpForo CSS codes.
This CSS should help you to solve the conflict:
#wpforo #wpforo-wrap .wpforo-post-content .result-container .container__top__hours-wasted font > font {
font-weight: normal !important;
}
#wpforo #wpforo-wrap .wpforo-post .wpf-right blockquote{
text-align: left !important;
}