Hello CodebyCarter,I’m having a similar issue. I am using the Reaction theme. I have followed the steps you outlined above:
in wpbb-light-style.css (and dark)
width:60%;
float:left;
and then in themes/reaction/wpbb-template.php:
get_sidebar();
I have a sidebar now, but it’s below the forum table, and the table hasn’t aligned left at 60%…any ideas?
wpbb-template.php:
<?php
/*
Template Name: WPBB
*/
/*
This file is created apon activation or theme switch in your current theme directory.
Do not remove this file at any time as it is loads all the neccessary files for wp-bb to run on the frontend
*/
get_header();
require_once(ABSPATH.’/wp-content/plugins/wp-bulletin-board/php/wpbb-forum.php’);
get_sidebar();
get_footer();
?>
wpbb-light-style.css:
/* Credit to twentyelevens entry-content table as I used that as my table class when developing the plugin and and may use some styling or bare resemblance to it */
.wpbb-table {
width:60%;
float:left;
border: solid 0.1em;
border-color: #9E9E9E;
background-color:#F8F8F8;
}
Thank you for any ideas/suggestions you have,
Rory Foster