I am converting a website to Drupal and I am confused. I have the $Content area set up and working fine. I have moved all the old layout to the new website. 2 issue remain. The old site had a unique left column and main website image for each page. How do I set up 2 additional areas per page (Top, Left) and allow people to set up a left & top for each page?

Site in question: www.accufire.com/index.php

~ Roushy

Comments

jix_’s picture

Define three regions in your_theme.info:

  • content
  • top
  • left

In page.tpl.php, put <?php print $content ?>, <?php print $top ?> and <?php print $left ?> at the places where you need them to show up.

Using the CCK module, create fields for the things that should appear in the top and left regions.

Then, using the cck_blocks module, you can get the output of those fields appear in the regions you want.