Hi all,

I posted this in the template forum, under the 'mihluna' support thread, but I haven't received a response yet, and desperate to figure this out ASAP, so I was hoping someone would be able to assist please...

Hi,

I'm using the Mihluna template, and would like to make the columns down the left / right a full colour, instead of just the sideboxes being coloured (using the stylesheet).

Is there anyway of doing this?

Cheers!

Oli
I've figured out that column_left.php and column_right.php control the columns, but can't workout how to make the whole column's background a solid colour, and for the sideboxes to seamlessly "merge" into the colour.

At the moment I've got these in column_right.php;

Code:
<div style="height: 100%; background-color:#fde9f2">
<?php
//$column_box_spacer = 'column_box_spacer_right';
$column_width = BOX_WIDTH_RIGHT;
if ( file_exists(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . $column_right_display->fields['layout_box_name']) ) {
  $box_id = zen_get_box_id($column_right_display->fields['layout_box_name']);
  require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . $column_right_display->fields['layout_box_name']);
} else {
  $box_id = zen_get_box_id($column_right_display->fields['layout_box_name']);
  require(DIR_WS_MODULES . 'sideboxes/' . $column_right_display->fields['layout_box_name']);
}
  } // file_exists
  $column_right_display->MoveNext();
} // while column_right
$box_id = '';
?>
</div>
Now this comes out as the below if I change the height to 600px, but can't get the 100% of the column to fill;



It must be something simple, but I'm completely missing it.

HELP!

Many thanks,


Oli