I am trying to create a new theme. I am starting from Clean. I am trying to make the side blocks smaller in width, but am having trouble. I think I understand bootstrap, but I guess I am confused with some of the Moodle stuff.
In Clean, 3 column layout is such:
<div id="page-content" class="row-fluid">
<div id="<?php echo $regionbsid ?>" class="span9">
<div class="row-fluid">
<section id="region-main" class="span8 pull-right">
<?php
echo $OUTPUT->course_content_header();
echo $OUTPUT->main_content();
echo $OUTPUT->course_content_footer();
?>
</section>
<?php echo $OUTPUT->blocks('side-pre', 'span4 desktop-first-column'); ?>
</div>
</div>
<?php echo $OUTPUT->blocks('side-post', 'span3'); ?>
</div>
The side-pre and main content are in a span9 container and the side-post blocks are in a span3. Trying to lessen the width with the span classes results in uneven side blocks. I tried creating a three column layout that put side-pre blocks in a different container than the main, and the result worked, unless I put all of the blocks on one side, then they drop underneath.
Any help would be appreciated.
Rob