Hi,

I'm developing a site from scratch using Zenkit.
I created 3 column layout, but I need to make largest content column move to the left and have two smaller columns on the right.
What is the correct way to do it. I know css and you just float column.

What is the proper way to do it in Zen page.tpl or css

http://www.fantasticsarcastictees.com/

Thank you.

Comments

beautifulmind’s picture

in your whatever.tpl.php, you have to insert code for content column before other sidebars. like..

<?php if ($content): ?>
  <div><?php print $content ?></div>
 <?php endif; ?>

<?php if ($left): ?>
  <div><?php print $left ?></div>
 <?php endif; ?>

<?php if ($right): ?>
  <div><?php print $right ?></div>
 <?php endif; ?>

Let me know if this can do for you.

Regards.

Regards.
🪷 Beautifulmind

Hipster’s picture

But sidebar left and sidebar right are both appear after content in page template, even though left sidebar shows up as a left column before the main content. Logically that how it should be but it's not how it is in the page template.