BloggerThis tutorial will cover the steps needed to create your own blogger template. Many people have used blogger to run blogs and have wondered how they can make their own theme to use with it. There are a very few hard to find guides on how to do this, so I’ve decided to take up the task to help as many people as I can, create one.

To create a blogger template, you will need a graphic editor (Such as Photoshop, GIMP, or even Paint will do) to create images for backgrounds, post headers, sidebars, etc.. We will get to that later. You will also need an idea or vision about what you want to create. Without that, you are just wasting your time and electricity. Lastly, you will need to know about C.S.S (Cascading.Style.Sheets) and how to operate them. If you do not know how to do that, you cannot apply interesting effects to your newly designed template (Such as: Positioning pictures or text, creating repeated backgrounds, moving around pictures and text and more). A great guide on how to get started with this is available here.

Once you have got everything you need, you should start the C.S.S Framework by putting properties such as

body[ background-color: #000000; margin: 0 auto; font-family: “Trebuchet MS”, Arial, Helvetica, sans-serif;
font-size: 14px;}

#title [ font-size: 32px; color: #000011; }

so-on and so forth. A basic list of these tags that were taken from Blogger’s simple white theme are available here: (PDF File) XML Tags Blogger List Of CSS. An easier way to do this would be to find a theme that you like and copy and paste the C.S.S, editing it along the way so that time is saved. The only problem with doing that is that every theme is engineered differently so the tags will change.

After configuring your CSS Stylesheet, you must piece it together in HTML. This can be achieved using similar structures.

<div id=’main-wrapper’>
<b:section class=’main’ id=’main’ showaddelement=’no’>
<b:widget id=’Blog1′ locked=’true’ title=’Blog Posts’ type=’Blog’/>
</b:section>
</div>

Do not forget to reference blogger templates that have already been created for the required widgets that you are supposed to put in certain spots. Without doing this, you could not complete making your own template.

Now comes the grueling part that you can either do yourself which could take hours to finish, or copy from another site and edit accordingly. Blogger is configured using widgets. All your posts are just one big widget hence the code up there. An Example of the code that you could type yourself or copy is:

<div class=’post-footer’>
<p class=’post-footer-line post-footer-line-1′><span class=’post-author’>
<b:if cond=’data:top.showAuthor’>
<data:top.authorLabel/> <data:post.author/>
</b:if>
</span> <span class=’post-timestamp’>
<b:if cond=’data:top.showTimestamp’>
<data:top.timestampLabel/>
<b:if cond=’data:post.url’>
<a class=’timestamp-link’ expr:href=’data:post.url’ title=’permanent link’><data:post.timestamp/></a>
</b:if>
</b:if>
</span> <span class=’post-comment-link’>
<b:if cond=’data:blog.pageType != “item”‘>

<b:if cond=’data:post.allowComments’>
<a class=’comment-link’ expr:href=’data:post.addCommentUrl’ expr:onclick=’data:post.addCommentOnclick’><b:if cond=’data:post.numComments == 1′>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</span> <span class=’post-icons’>
<!– email post links –>
<b:if cond=’data:post.emailPostUrl’>
<span class=’item-action’>
<a expr:href=’data:post.emailPostUrl’ expr:title=’data:top.emailPostMsg’>
<span class=’email-post-icon’> </span>
</a>
</span>
</b:if>

<!– quickedit pencil –>
<b:include data=’post’ name=’postQuickEdit’/>
</span> </p>

<p class=’post-footer-line post-footer-line-2′><span class=’post-labels’>
<b:if cond=’data:post.labels’>
<data:postLabelsLabel/>
<b:loop values=’data:post.labels’ var=’label’>
<a expr:href=’data:label.url’ rel=’tag’><data:label.name/></a><b:if cond=’data:label.isLast != “true”‘>,</b:if>
</b:loop>
</b:if>
</span> </p>

That code translated into human terms controls what goes at the bottom of every post…In this case its the author, time, comment link and labels. To extract the code from other templates, just click the “Expand Widget Templates” button and it is below the stylesheet on a certain template.

Most of creating a template is just trial and error. If you look at the code and try to piece it together bit by bit.. you will eventually succeed and reap the rewards of creating one. I hope this tutorial has covered everything that you will need and comments/suggestions would be greatly appreciated as it would be great if this tutorial would become a one-stop source for all of the Blogger CMS(Content Management System) users.

*Update*

Every different piece of code inside the template does not need to be used and can be modified to fit what you are creating. For example, you don’t need to include a “Labels” section in each post if it will make the design that you create look terrible. Then again, It is all in the eye of the beholder as everyone has different tastes.

Thanks for visiting my blog! You may want to subscribe to my RSS feed so you will be able to get these daily blog tips for free!

Related Posts:

14 Responses to “How To Create Your Own Blogger Template Theme *Updated*”

  1. [...] on new topics that many people might search for assistance on. One tutorial that I have written (How To Create A Blogger Theme) has been seen by at least 5 people per day since I posted it. Refer to the statcounter keyword [...]

  2. ArahMan7 on March 1st, 2008

    Wow, this is what I’ve been looking for.  I’m gonna subscribe your feed so that I can learn more on how to create a Blog*Spot’s template. Hope this kind of post will be published more or maybe I can shoot you an email if ever I come across any problem? What say you, Brad?See you around.Greetings and lots of love from Malaysia.

    ArahMan7’s last blog post..SOS, I’ve Been Attacked!

  3. Sean on March 24th, 2008

    Thanks for this great tip. I’ll be applying it to my site as soon as I get some time aside from school and work.

    Sean’s last blog post..The Tech Juice now on Twitter

  4. bradblog on March 24th, 2008

    No problem Sean.. Glad I could help

    Arahman7..You can always send me an email using the contact page

  5. putra banua on March 24th, 2008

    Thank you for your information. It’s very nice article and teach people who wants to be blogger design

    putra banua’s last blog post..Learn web hosting

  6. thinsurface on April 14th, 2008

    I wish I came across your information sooner! I’ve just completely written all of my CSS and HTML from scratch to create my own template!The benefits though are tremendous - I have now slightly altered the code and have used it on 4 of my other blogs! It was a lot of hard work - but totally worth it!

    thinsurface’s last blog post..The Untold Story of How the Three Little Pigs Built Their Blogs

  7. [...] This tutorial will cover the steps needed to create your own blogger template. Many people have used blogger to run blogs and have wondered how they can make their own theme to use with it. There are a very few hard to find guides on how to do this, so I’ve decided to take up the task to help as many people as I can, create one. Incase you are skimming over the content, this article is teaching you “ How to create a blogger / blogspot theme“ [...]

  8. Spoil Pink on May 25th, 2008

    Do you have a video tutural for this? Because I like how it is done, but I barely understand what it means. I understand video tuturals better.

  9. bradblog on May 25th, 2008

    That could be a future consideration Spoil.

    Thanks for reading!

  10. Spoil Pink on May 26th, 2008

    Your welcome!

  11. Digital Board on June 10th, 2008

    Is there any software that can do the coding?

    Digital Board’s last blog post..Empathize With The Retiree: Find The Perfect Retirement Gift.

  12. xtremagix on June 10th, 2008

    many many thanx for this post
    i’ve looking around for things like this…
    great job !!!

    xtremagix’s last blog post..Coin Date Prediction

  13. david miron on July 1st, 2008

    Hello thereThank you for the insightful description. I have one question I am not clear about. Is it possible for me to have two areas on my blog that I can post to, for example an area where I can post my new text posts and another area where I can post my weekly cartoon?

  14. Fashion_Girl22 on July 16th, 2008

    Is there any way you can help me make my blog look like the Chanel Site?

    Fashion_Girl22’s last blog post..Garrett For Calvin Klein Body





All links will count in the search engines as No-Follow is removed. Thank you for your comment.