when left coloumn is longer then content css doesn't apply all the left coloumn. you see it in the screenshot. also there is not problem with ie6.

CommentFileSizeAuthor
drupal-theme-problem.JPG92.91 KBvedat.kamer

Comments

urbanfalcon’s picture

Assigned: Unassigned » urbanfalcon

This seems to be a common complaint with this theme, but it's an easy fix. I posted elsewhere, but will post here in case you are keeping tabs on this thread.

With an out-of-the-box installation of this theme,

//-------OPEN-------//
page.tpl.php

//-------FIND-------//

   <?php if ($help != ""): ?>
      <p id="help"><?php print $help; ?></p>
    <?php endif; ?>
        
    <?php if ($messages != ""): ?>
      <div id="message"><?php print $messages; ?></div>
    <?php endif; ?>
        
    <?php print phptemplate_wrap_content($content) ?>
 
    <?php if ($footer_message): ?><div id="footer" class="footer-<?php print $layout; ?>"><p><?php print $footer_message; ?></p></div><?php endif; ?>
  </div></div>
 </div>

//-----ADD AFTER-----//

  <!--added to extend left column background-->
  <span class="clear"></span>

//-----SAVE & UPLOAD-----//

Voila! The left column background will now stretch down to meet as much sidebar content as is delivered.

Steven’s picture

This should be now fixed in 4.6 and HEAD. I used a different fix.

Anonymous’s picture