I've had a few questions about how to get a third column, How to center date & title of post and use of different fonts. So here are you answers.
3 Columns: I used this tutorial
3 Column Template
Center Post Title & Date:
1. once signed into blogger click on Customize
2. click on html
3. scroll down and find this:
/* Posts -----------------------------------------------
4. paste this: text-align:center after
h2.date-header {
and
.post {
this is how mine looks:
-----------------------------------------------
*/
h2.date-header {
text-align:center;
margin:1.5em 0 .5em;
}
.post {
background: url(http://i103.photobucket.com/albums/m145/crystalchesser/Layout%20Pics/Image3-2.jpg);
background-repeat: no-repeat;
background-position: bottom center;
text-align:center;
margin:.5em 0 1.5em;
border-bottom:0px dotted $bordercolor;
padding-bottom:5.5em;
Post Title
}
Hope this helps if you need further instructions let me know.