Last updated October 18, 2011. Created by Sree on February 20, 2007.
Edited by MGParisi, ronald_istos, jhodgdon. Log in to edit this page.
How to make the 'sidebars' visible even when there's no visible block!
open your page.tpl.php file :
<?php if ($sidebar_right) { ?><td id="sidebar-right">
<?php print $sidebar_right ?>
</td><?php } ?>Change it to :
<td id="sidebar-right">
<?php print $sidebar_right ?>
</td><?php ?>Follow similarly for other sidebar too!