Design Process
It’s important for me to retain an overall look to my blog design. So many blogs out there have lots of different fonts with different colors and sizes. This just confuses the reader as they scan over the page. You will need to retain some “conformity” to the blog design to make it look good.

This is where the CSS code in Zone 2 comes into play. By defining the font settings for the post text in Zone 2, you can ensure that it will look the same on every post. Before the days of CSS code, each setting had to be hand coded. But now you can change one thing in Zone 2 to make it apply to the whole blog.

At present, current web design features the following themes and styles

  • Rounded shapes/boxes
  • Large fonts
  • Pastel colors
  • Lots of Whitespace
  • One contrasting color to highlight a feature

You can read more about current web design trends at the Naked IT blog and a good list of examples can be seen at the Webdesignfromscratch site. I am going to try and follow these current design themes when we get into re-doing the template a little later in the series.

I am not intending to change the layout of the blog too much. I am happy with the blog having one large column for the posts and one sidebar to the right hand side. The sidebar position can be changed to the left quite easily by swapping the float: items from left to right and vice versa in Zone 2:

#main {
width:410px;
float:left;
}
#sidebar {
width:220px;
float:right;
}

You can also increase the width of the 2 columns to give you more space, but remember to keep the sum of the values within the width specified in the #content section of Zone 2:

#content {
width:660px;
margin:0 auto;
padding:0;
text-align:left;
}

The #content is the overall page width and the #main (posts) and #sidebar (sidebar) have to fit within this value plus a bit more to allow for padding. You can of course ammend the width of the #content section if you need to if you drasticly change your widths.

Images
You can use images to add style to your design, but there is no need to go over the top. Remember that you might want to be adding images to your posts (which I try to do in each post) and that might make it all look a little messy.

You can use the “add image” facility provided by Blogger to upload images to your posts but I prefer to use Flickr to host images that I use in my template. If you really don’t want to use Flickr, you can create a draft post in blogger with images in that you have added and view the HTML code of the post to get the image URL to use in the template. But if the post is lost for any reason, so are the images and your template design.

Space
Remember not to let your design get too crowded on the screen. Less is more when it comes to good web design and having a page with flashing animated images all over it will just put people off. As will having too many javascript add-ons like chatboxes, calendars and falling snowflakes all over the screen. I have also seen that some Javascript add-ons also produce popup windows with links to Spyware – so use them sparingly!

In the next part of the series we can begin editing the template code and make our first changes.

This is part of the Blogger Template Overhaul series.

Part 1 – Introduction
Part 2 – Template Code
Part 3 – Design
Part 4 – Headers
Part 5 – Posts
Part 6 – Comments
Part 7 – The Sidebar
Part 8 – The Footer

Related: