it may be that your theme is overwriting it (or it could be lots of other reasons !)
try
#bbpress-forums {
font-size: 16px !important ;
}
or use my style pack, which will let you style fonts and much more
https://wordpress.org/plugins/bbp-style-pack/
The code you wrote didn’t work, but your plugin does. Almost exzellent 😀
I have a different question, and I know many post becouse of this issue exist.
But none of them got me to a resolution.
How can I use the full width for my forums? At the homepage of my forumsite it works nice, but as soon as I click on a Forum the disgusting sidebar comes from the right. I tried copying the page.php an rename it to bbPress.php and remove all things that have to do with sidebars. That didn’t work.
Here is the code:
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package Sydney
*/
get_header(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
<?php endwhile; // end of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>
an rename it to bbPress.php
php is case sensitive, so if you name it
bbpress.php
it should work
Ah, nice thank you very much!
Now everything works.
great – glad you are fixed !