Hello bdbrown, and thank you kindly for your reply.
I’m using BBpress and it’s slug /forums, doesn’t allow me to edit the page and thus changing the layout for that page. To fix this, I created a dynamic sidebar and changed the template sidebar to:
<?php get_sidebar('forum'); ?>
I copied sidebar-2.php to sidebar-forum.php, which looks like this:
<div class="sidebar s2">
<a class="sidebar-toggle" title="<?php _e('Expand Sidebar','hueman'); ?>"><i class="fa icon-sidebar-toggle"></i></a>
<div class="sidebar-content">
<?php if ( hu_is_checked('sidebar-top') ): ?>
<div class="sidebar-top group">
<p><?php _e('More','hueman'); ?></p>
</div>
<?php endif; ?>
<?php dynamic_sidebar( 'forum' ); ?>
</div><!--/.sidebar-content-->
</div><!--/.sidebar-->
I can add widgets to my dynamic sidebar and it will output on the right, but while the s1 sidebar is not even present, it somehow still takes up the empty space.
I hope I don’t confuse you.