im working on a theme made by scratch. It is intended to be 2 colums, so i had strip out the right column. No problems on that, but in block config section i can still move blocks to right pane, causing them - ofc - to disappear.

how can i fix that?

Comments

marcingy’s picture

This should help

http://drupal.org/node/29139

Basically you need to create a function in your template file which defines the regions that you require as illustrated below

templatename_regions() {
return array(
'left' => t('left sidebar'),
'right' => t('right sidebar'),
'content' => t('content'),
'footer' => t('footer'),
'header' => t('header')
);
}

The.Clue’s picture

many tnx! thats what exactly i need :)

TheClue/Nash of Subsystem