I'm sorry, I have not had time to answer you earlier, but you have totally misunderstood me.
I did not say anything about Admin and Navigation Blocks, I was meaning the Admin and Report Layouts, which are a totally different thing.
Admin layout look like this
Report layout look like this
However, if you want to change the theme fully into a side-post (right side) only theme you can make the following changes in $THEME->layouts = arrary() in your version of theme/clean/config.php so it looks like this.
$THEME->layouts = array(
// Most backwards compatible layout without the blocks - this is the layout used by default.
'base' => array(
'file' => 'columns1.php',
'regions' => array(),
),
// Standard layout with blocks, this is recommended for most pages with general information.
'standard' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
),
// Main course page.
'course' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
'options' => array('langmenu' => true),
),
'coursecategory' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
),
// Part of course, typical for modules - default page layout if $cm specified in require_login().
'incourse' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
),
// The site home page.
'frontpage' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
'options' => array('nonavbar' => true),
),
// Server administration scripts.
'admin' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
),
'mydashboard' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
'options' => array('langmenu' => true),
),
// My public page.
'mypublic' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
),
'login' => array(
'file' => 'columns1.php',
'regions' => array(),
'options' => array('langmenu' => true),
),
// Pages that appear in pop-up windows - no navigation, no blocks, no header.
'popup' => array(
'file' => 'popup.php',
'regions' => array(),
'options' => array('nofooter' => true, 'nonavbar' => true),
),
// No blocks and minimal footer - used for legacy frame layouts only!
'frametop' => array(
'file' => 'columns1.php',
'regions' => array(),
'options' => array('nofooter' => true, 'nocoursefooter' => true),
),
// Embeded pages, like iframe/object embeded in moodleform - it needs as much space as possible.
'embedded' => array(
'file' => 'embedded.php',
'regions' => array()
),
// Used during upgrade and install, and for the 'This site is undergoing maintenance' message.
// This must not have any blocks, links, or API calls that would lead to database or cache interaction.
// Please be extremely careful if you are modifying this layout.
'maintenance' => array(
'file' => 'maintenance.php',
'regions' => array(),
),
// Should display the content and basic headers only.
'print' => array(
'file' => 'columns1.php',
'regions' => array(),
'options' => array('nofooter' => true, 'nonavbar' => false),
),
// The pagelayout used when a redirection is occuring.
'redirect' => array(
'file' => 'embedded.php',
'regions' => array(),
),
// The pagelayout used for reports.
'report' => array(
'file' => 'columns3.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post',
),
// The pagelayout used for safebrowser and securewindow.
'secure' => array(
'file' => 'secure.php',
'regions' => array('side-post'),
'defaultregion' => 'side-post'
),
);
Also few changes go into Clean theme, all the changes are made to Bootstrapbase which your cloned theme will inherit.
I hope this is clearer?
Chees
Mary