Is it possible to add a content-top and content-bottom regions in Pixture theme I am using drupal 5.18.
If its possible , how do I insert the regions.
Thanks.

Comments

vm’s picture

igbonine’s picture

Thanks VeryMisunderstood.
Does this solution apply to table based themes also?
Especially for Pixture whose template.php does not contain any of this code

function mytheme_regions() {
  return array(
    'right' => t('right sidebar'),
    'content' => t('content'),
    'header' => t('header'),
    'footer' => t('footer'),
    'floater' => t('floater'),
    'inline1' => t('inline 1')
  );
}

and the page.tpl.php is all tables.
Any advice?

vm’s picture

it applies to all phptemplate based themes and pixture doesn't have that code yet because it isn't defining regions beyond the default.

when you define new regions in a theme you must also define the defaults. hence the code that gets added to template.php

if the theme is table based ensure you alter/add tables to page.tpl.php for those regions to be available at the theme level when blocks are placed in theme.

igbonine’s picture

Thanks again.
Let me get to work.