Currently my theme uses a 3 column layout of pre - content- post.
This works fine form most of the site. However in the assignments grid view the content is squished to much to be useful. I want to be able to remove or move the post column in this view.
Am I able to this by creating a new layout in themename/layout and then calling the new view in the $theme->layouts array? Like:
<code>
$THEME->layouts = array(
'assign' => array(
'file' => 'columns3-mylayout.php',
'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'),
'defaultregion' => 'side-post',
),
);
</code>
if not how can I do this?