How To Customize the Columns
There are 5 different widths defined in the style sheet that allow you to customize how many columns the template has:
- width25 25 percent width
- width33 33 percent width
- width50 50 percent width
- width75 75 percent width
- width100 100 percent width
To use them, create a <div> tag and apply the class. To position the columns, use the floatLeft and floatRight classes. This is possible because you can stack CSS classes on an element.
If you want columns to be side by side, make sure the widths added up don't go over 100 percent. If they do, the rightmost column will be pushed down.
Below is an example of the skeleton code used to generate this layout. Notice the leftColumn class used on the leftmost column. This is to make the column line up properly with the header. If you are using a gradient on this column, you won't need to use this class.
<div class="width25 floatLeft leftColumn">
Left Column content
</div>
<div class="width75 floatRight">
Right Column content
</div>
Gradients
The gradient class can be used in any column. It will create the grey fade you can see in this column. Using it is very straightfoward. The gradient class is automatically applied to the 'h1 title gradient' container.
<div class="gradient">
Column content
</div>