Have you ever wanted to create a page using a single column at the top, and below that, two, three or more columns, and then a single column or more beneath THAT?
It's relatively easy if you learn how to use html tables.
Let's begin with a basic page (it could be your index page, etc.)
If you make that page a SINGLE COLUMN page, you can then customize it any way you'd like. So for example, you'd like a single column at the very top. then simply drag ONE html block up to your index page in the Page Builder in your admin area. Okay, place anything in this that you want. Now, directly underneath, you want two columns to display side by side. Now comes the fun. Drag a second block directly below your first block. Using the html editor, open it and insert the html code for a two-column table.
<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th>Table header</th>
<th>Table header</th>
</tr>
<tr>
<td width="50%">Table cell 1</td><td>Table cell 2</td>
</tr>
</table>
The code above results in the following table.
Table header | Table header |
---|---|
Table cell 1 | Table cell 2 |
You can see the basic code necessary to create your tables now. Using 50% rather than a fixed pixel width allows your page to stretch and shrink as the web browser is adjusted.
Now, all you need to do is remove the table border, and table header info to create two OPEN, Borderless blocks like so:
Table cell 1 | Table cell 2 |
Now all you need to do is insert whatever you'd like to see appear in your blocks where the "Table cell 1 and Table cell 2 code is. Add more blocks and either add more tables like above, or simply insert your items.
You can just copy the table cell items as many times as you'd like to create 3, 4, 5 or more columns in a single block. be SURE to adjust the widths accordingly for more blocks. You can even adjust each table width individually by using the<table width="20%"> for each individual table. Table 1 can have a 20% width, table 2 can have a 50% width, and table 3 can have a 30% width, or however best suits your needs. This way your tables remain fluid on the page.