How to Write a Three Column Article in Blogger
Columns are a neat, easily readable way to organize large amounts of text. If you have a post for your Blogger page that would be easier on the eyes if it were divvied up into columns, the easiest way to do this is by creating a table with HTML. HTML tables give you the freedom to tweak the layout of your columns in any way you please. Though this code is very basic, you will probably find it easier to work with if you have prior experience with HTML.
Instructions
-
-
1
Click the "Layout" tab within Blogger. Click "Edit HTML."
-
2
Enter the following code into the HTML editing field. Note that this example code will give you a borderless table 300 pixels wide, with padding of ten pixels between each column. You will probably want to change these values in order to make the table fit with your overall design.
<table width="300px" border="0" cellpadding="10">
<tr>
<td>Column 1</td>
<td>Column 2</td>
<td>Column 3</td>
</tr>
</table>
-
-
3
Replace the "Column 1," "Column 2" and "Column 3" text with your article content.
-
1
References
- Photo Credit Comstock/Comstock/Getty Images