This theme is so excellent, it has done everything needed.
The last change we are trying to make is to have the right hand column start right beside the masthead pictures. So this would involve shortening the width of the mast head area and then having the right hand column start in that new space. Because we are using such large masthead pictures on our site, this will let the visitors see some text content right away.
I have been looking into layout.css.. would it be as simple as shortening the masthead area width - would that automatically make the right hand column move up?
I've attached a basic layout pic for clarity.
thank you so much.

CommentFileSizeAuthor
layout.jpg66.34 KBexpotv

Comments

Anonymous’s picture

Assigned: Unassigned »

If you modify any of the grid_ classes in layout.css, it will affect a lot of other things in the theme. Instead, you will want to modify page.tpl.php

Look for this line:
<div id="masthead" class="grid_16"><?php if (!empty($masthead)) { print $masthead; } ?></div>

You will need to do a few things with that line. The first is to move it to the center content area. Cut the line and paste it just after this line:
<div id="center" class="<?php print $nitobe_center_class; ?>">

Then change the class attribute of the masthead div element from grid_16 to grid_12.

I don't know if this will do exactly what you're looking for, but it should get you on the right path.

Anonymous’s picture

Status: Active » Closed (fixed)