Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
If I change the styles on the forum to change the default fonts it doesn't seem to affect the editor text box.
It still says 11pt even thought I have changed the default font size. Should that value reflect the actual size of the default font the person will be typing with? I've had some confusion thinking the text in the post is 11pt. When I look at the post in the browser debugger, it shows 16px.
Is this the way it is meant to work?
Evelyn
Related to the editor - is there a way to add a photo to the post? I don't see any image option in the editor.
Thanks! I added the custom code, added the css, cleared cache, etc and I still see 11pt in the reply editor window.
Please remove the old customizations you've done and just put the following code in your current active theme functions.php file:
add_filter('wpforo_editor_settings', function ($settings){
$settings['tinymce']['content_style'] .= 'p{font-size:14pt;}';
return $settings;
});
Change the red marked code before using it.