My goal is to make it so that the 2-sidebars are always rendered even if there is nothing to display in them. I thought I might be able to do this by ensuring that both the left and right sidebar regions are listed in clean.info, but I see NO regions in the clean.info. So, how is Drupal 6.x determining what regions are enabled? How might I accomplish my goal?

Thank you very much.

Comments

vm’s picture

check template.php

psynaptic’s picture

Why don't you just remove the conditions from around the divs?

Change:

    <?php if ($left): ?>
      <div id="left" class="sidebar">
        <?php print $left ?>
      </div>
    <?php endif ?>

To:

      <div id="left" class="sidebar">
        <?php print $left ?>
      </div>
psynaptic’s picture

Title: noobie - why aren't the regions in the clean.info for 6.x? » Add default regions to info file
Status: Active » Fixed

Committed to DRUPAL-6--1:

http://drupal.org/cvs?commit=189750

Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.