|
Here is another free Blogger template for you to download: Halo 01.
This template uses a minimalist, grid-based layout and a unique presentation of post meta-data (labels, posting date, etc) which appear in a column to the left of each post. You can preview a larger version of this template by clicking on the image or viewing the demonstration blog. More features of this template include:
How to upload the Halo 01 Template to your blogDownload the Halo 01 template and save this to a location on your computer. This template is contained in a Zip folder which you will need to extract using Winzip or your favorite extraction program (if you use WIndows XP, you should be able to decompress the file automatically). Ensure you have saved the Halo_01.xml file to a location on your computer which you can remember easily. Then log into your Blogger dashboard and go to Layout>Edit HTML. Near the top of the screen, you will see the "Backup and restore" section where you can upload a new template to your blog: Click on the "Browse" button to locate the Halo_01.xml file on your computer, then press "Upload" to replace your old template with this new template. If you have many widgets in your existing layout, you may be prompted to delete these before the changes can be saved. Be sure to make a back-up of any important widgets before saving these changes! Alternatively, take a look at my tutorial for how to retain widgets when changing Blogger templates. Once you have uploaded your new template (and confirmed deletion of widgets if necessary), your new template is ready to be configured. How to change the navigation linksThe navigation links beneath the header section have been coded into the template. To edit or add your own links, you will need to edit this section of the template code: <div class='nav'> The code highlighted in red demonstrates the actual links you should change: replace these with the URL which you want the navigation buttons to point to. The code in blue is the link text. You should replace these snippets with the text you would like to be displayed on the navigation buttons. How to configure your Flickr PhotostreamThe CSS code required to style the Flickr Photostream is already present in the Halo 01 Blogger template. To add the code required to display a Flickr Photostream, go to Layout>Page Elements in your Blogger dashboard and click the "Edit" link for the Flickr Photostream widget. Then copy and paste the following code into the content section for this widget:
Replace the user ID number (highlighted in bold red) with your own unique Flickr ID. If you do not know what your Flickr ID is, you can find this easily using idGettr; simply enter your Flickr username and this simple utility will find your Flickr ID for you! Finally, save your changes to this widget. Now when you view your blog in your browser, your own Flickr images will appear as thumbnails in this widget. How to change the icon in the headerThe generic icon in the top right of the header section can be replaced with your own avatar if you prefer.Firstly, design your avatar and ensure this is 60px wide and 50px tall. Upload this new avatar to your favorite image host (I prefer Picasa Web Albums, though you could use Photobucket or any hosting service you prefer). Be sure to copy the URL of your avatar to your clipboard. Next go to Layout>Edit HTML in your Blogger dashboard, and check the "Expand widget templates" box. Then search for the following line of code: <p id='authorIntro'><img alt='Icon' src='http://lh6.ggpht.com/_xn2gmPb9TfM/SS2ChwchInI/AAAAAAAADXc/4BrtWQUyDKg/s144/avatar.gif'/><span><data:description/></span></p> Replace the code highlighted in red with the URL of your new avatar, being sure not to disturb the surrounding single quotes ('). Preview your template to ensure no mistakes have been made when pasting your URL, and if all is well, proceed to save your template. Licensing and copyright informationAll images and content used in this template were created by myself, including the mini-icons used for the post meta-data. This template is distributed under the Creative Commons Non-Commercial Attribution 3.0 license. This means you can use the template in any of your projects and make any modifications you choose, so long as you do not sell this template and provide attribution to the original author in some way. Your thoughts?I hope you enjoy using the Halo 01 template for your blogging projects! Please feel free to offer your comments and opinions using the form below.An issue of blog design is that CSS based layouts cannot produce columns of equal heights. For example, when designing a two or three column template, it is almost impossible to make the sidebar(s) stretch to the length of the main posts column. This is particularly noticeable when a background color (or image) is used for the sidebar which does not stretch to the length of the page.
This issue is also relevant for those who display their blog posts side-by-side on the home page. Posts which are of equal height would appear in a harmonious grid-like format which is more pleasant to the eyes, whereas posts of unequal length disrupt the grid-like pattern and can often cause disarray in the layout. In this tutorial, I'll explain how to use JavaScript to ensure columns of your choosing (whether the sidebars and main column, or individual posts) appear at equal heights to ensure a pleasant and harmonious layout for your blog design. The "Matching Columns Script" and how it worksIn this tutorial, we will be using an adaptation of the "Matching Columns" JavaScript by Alejandro Gervasio. which was modified to work in FireFox by Stefan Mischook for Killersites.com. You can read the original article and even view a video explaining how this script works over at the Killersites blog. This JavaScript matches the height of all columns which use a specific CSS "class". It finds the length of the longest columns which uses this class name, then creates extra CSS declarations to ensure all other columns using this class are lengthened to the same height. For example, if we use the class of "column" for both the main posts section and sidebars in our blog template, the script will ensure that the main column and both sidebars appear of equal length when viewed in a web browser. The original Matching Columns JavaScripts use external files which are linked to in the head section of the web-page. However, I have adapted this method for use in Blogger templates so we can use "inline" JavaScript, meaning we do not need to host a JavaScript file on an external host. How to add the Matching Columns function to your Blogger layoutThe first step to creating columns of matching height in your Blogger layout is to add the required JavaScript code to the head section of your template. This is very simple! All you need to do is copy the following section of code and paste this just before the closing <head> tag in your Blogger template (it is quite long so be sure to copy the entire section of code to your clipboard!): <!-- Equal Columns JavaScript Start --> Once you have pasted this section of code in your template, proceed to save it. If for some reason you have made any errors when pasting the code, you will receive an error message and be unable to save. Now to make sections of your Blogger layout have equal heights, we need to apply the class of "column" to those sections in the actual template code. I will offer two variations of how this can be achieved in this tutorial: making the sidebar and main-wrapper equal height, and making all posts equal height (for use when making posts appear side-by-side). Make the sidebar(s) and main posts column of equal lengthThis method works best for layouts including at least one colored sidebar (whether this feature a background color or background images for effect). There are many different non-standard templates using this style of layout, so it's likely that the identifiers of the divisions referenced here could be different in your own template. To make the sidebar(s) and main column of equal length, you will need to add the class of "column" to these divisions in the template. For the main-wrapper (the section which holds your blog posts) you should look for a line like this in your template: <div id='main-wrapper'> Add the code highlighted in red to this line: <div id='main-wrapper' class='column'> If you cannot find <div id='main-wrapper'> in your template, this may be called 'main-wrap' or 'main-section' instead. Use your discretion to find the appropriate code tag; you can always change things later! Next, you need to add the class of column to your sidebar or sidebars. If your template features more than one sidebar, this could become a little complicated though I will do my best to explain! Most Blogger templates identify the sidebar-wrapper like this: <div id='sidebar-wrapper'> If you find this in your template code, simply add the section in red: <div id='sidebar-wrapper' class='column'> The main sidebar could also be called 'sidebar-wrap', 'left-sidebar' or even 'left-bar' depending on the template you are working with. Again, use your discretion and add class='column' in the place you think most appropriate for your template. This also applies in templates where you have a second sidebar. It may be named <div id='sidebar-right'> ; 'right-sidebar-wrapper', 'new-sidebar-wrapper' or something entirely different. Simply add class='column' inside the division tag which you think references the correct section in your template. Now to check if your modifications have been successful, attempt to preview your template. Since the JavaScript we are using is contained within the template (not referenced from an external host) you should be able to see the difference straight away. This means that your blog sidebar should appear as long as your main posts column. If all looks well, you can proceed to save your template and enjoy your new matching columns. If your sidebar and main column do not appear at equal heights, clear your edits and begin again being sure to check the placement of the class='column' sections you have added. To make posts of equal heightThis method is particularly useful when using my recently posted customization to display posts side-by-side on non-item pages. Using this method ensures your posts appear in a grid-like fashion with spaces beneath shorter posts so all headings are correctly aligned. For this example, you will need to ensure you have checked the "Expand widget templates" box on the Edit HTML page, as we will be adding the class of "column" inside the main posts widget. Firstly, ensure you have added the JavaScript before the closing </head> tag in your Blogger template. Next, search for the following line of code (or similar): <div class='post'> If you cannot find this line, search for the following instead: <div class='post hentry'> Or any other division tag which begins with <div class='post You do not need to add the entire class='column' phrase here as this div already has class attributes. Instead, we simply need to add the class identifier, like this: <div class='post column'> or alternatively, <div class='post hentry column'> This is because divisions can have more than one "class" (though they can only have one "id"!). Once you have added this extra class to the posts section, preview your template to see that your blog posts are now all of equal height. Important information when making posts of equal heightIf you choose to make your posts of equal height, you must consider that all of your posts will appear as long as your longest post. So if you have one particularly long post on your home-page when all others are relatively short, there will be long gaps beneath all of your shortened posts!Other uses for the matching columns scriptYou can also adapt this script and methods to add columns of equal height to your blog footer (in conjunction with my three column footer hack, perhaps!), or to any other areas of your blog template which you would like to be of matching heights. Simply apply the class of "column" to all divisions which you would like to appear at the same height, and ensure you have pasted the JavaScript before the closing </head> tag in your Blogger template! Your thoughts?I hope you have found this tutorial to be a useful addition to the arsenal of Blogger customizations and tutorials posted here on Blogger Buster! Please feel free to leave your comments or let us know how you have used the matching columns script in your own designs by typing your message below. In recent weeks, one of the most requested tutorials has been how to display posts side-by-side. An example of how this is used is the classic (and much loved) Hemingway template, in which posts are displayed beside each other:
The Hemingway template does not include a sidebar in the layout. Instead, widgets are contained in the footer section (beneath the posts) which effectively puts most focus on the blog posts and less on the widget contents. You can download the Hemingway template for Blogger from BlogCrowds in both the black and white variations of design. Many bloggers prefer a three column template in which two of the columns are dedicated to blog posts (and with only one sidebar). An example of this layout can be seen in the popular Drudge Report blog: In this tutorial, I'll explain how you can create a three column Blogger template in which two columns are dedicated to posts, while the third may be used as a regular sidebar. On item pages, the post will take up the full width of two columns to ensure there is no unsightly gap between this and the sidebar. We're going to base this tutorial on the Minima template, though the same principles can be applied to most Blogger templates. Here is an example of what we will achieve: Overview (Read this first!)In this tutorial, I'll explain how to transform the default Minima template so that posts appear in (narrower) columns, side-by side on home, archive and search pages, with a sidebar of the same width appearing on the right hand side of the posts. To transform the basic Minima template into a three column, newspaper style layout is fairly straightforward and includes two basic steps:
An issue which you should consider when using this tutorial is that the width of each posts column (on non-item pages) will be decreased to 290px. This means you should ensure images in posts are no wider than 290px (including any padding or borders) otherwise the posts columns will be pushed beneath each other, rather than be displayed side-by-side. If you usually display large images and wish to do so on item pages, we can add some extra CSS to the template to restrict the width of images on non-item pages, as I will explain later in this tutorial. Most of the techniques described in this tutorial may also be applied to different templates. If you would like to transform your own (non-Minima) template in this manner, my advice would be to follow each step of this tutorial in a test blog first, then see how this could apply to the different CSS classes and identifiers in your own template. It's much better to have some experience of this technique beforehand than to jump in feet first! Step 1: Create a test blogWhile it is not essential to create a test blog to make changes to your blog layout, I'm sure many of you will find this useful! This way you can make changes without affecting your main blog, and if you happen to make a mistake you can start all over again ;) I have written a comprehensive tutorial about creating a test blog which you can read here. If you'd like to jump straight in, here are the basic steps covered in the test blog tutorial:
Once you have created your test blog, we can begin changing aspects of the layout. Step 2: Alter the dimensions of the layoutNow I am assuming you are using the Minima template (it doesn't matter which color), and that the sidebar is on the right-hand side of your layout. At the moment, the layout is too narrow to accomodate a third column. So we need to alter the dimensions of the layout in order to create more space. Increase the width of the #outer-wrapper The #outer-wrapper is the container which holds all of the content in this template, including the header, main posts section and sidebar. At present, your outer-wrapper will be 660px wide. We will increase this to 940px which will allow us to have three columns of 290px, 290px (the posts) and 300px (for the sidebar), plus margins between to allow for eye-pleasing white-space. To achieve this, find the following section in the b:skin section of your layout: #outer-wrapper { Change the 660px (highlighted in red) to say 940px instead. Increase the width of the #main-wrapper The #main-wrapper is the section which contains your blog posts, blog pager (newer/older posts) and any messages which appear when you perform a search or filter posts by label. We need to increase this from 410px to 620px, which will allow enough room for posts to display side-by-side in two narrower columns. To do this, find the following section of code: #main-wrapper { And replace 410px with 620px instead. Make the sidebar wider Personally, I find a three column newspaper style template to be more pleasing when all three columns are approximately the same width. So we will increase the width of the sidebar from 220px to 300px, which will equal the width of the post columns and their white-space. So find the following section of code: #sidebar-wrapper { And replace 220px with 300px instead. Fix the header and footer widths If you take a look at your template now, you will notice that the header and footer sections are narrower than the overall width of the blog. This is because the Minima template uses specific widths for the #header-wrapper and #footer sections of the layout. To widen these two sections (which complements the new wider design) we need to remove the width statements in the b:skin section of the template. This will then allow the header and footer to stretch to the width of the outer-wrapper and appear harmonious to the design. Firstly, find the following section in your blog template: #header-wrapper { And remove the line highlighted in red. Then locate this section of code: #footer { And again, delete the line in red. Now preview your template: you should notice that the header and footer sections now stretch to the overall width of the blog. The blog description may look a little lop-sided with this new setting, like this: To align the description centrally beneath the blog title, simply find this section of code: #header .description { Then delete the line in red. Since the description uses margins and padding, we can do away with the "max-width" property, which ensures this section is properly aligned to the heading above it. Ensure the #blog-pager spans the width of the main posts section When displaying posts side-by-side, it is ideal to have an even number of posts displayed. However, it is not always possible to do so. For example, on archive pages there may be an uneven number of posts for any given time period, or a blog search could produce 3, 5 or another uneven number of results. For this reason, we must ensure the blog pager (which displays links to the home page, newer and older posts) has a fixed width. Otherwise it may appear at the top right of the posts, which is not harmonious to the design. To apply a fixed width to the blog-pager, locate the following line of code in your template: #blog-pager { And immediately after it, add the lines in red: #blog-pager { This will ensure the pager always spans the width of both post columns on non-item pages. Save your modifications! At this point, we have made some heavy modifications to the Minima template. So if you have not already done so, save your template now. Step 3: Ensure the "date-header" appears in the right place!In the Minima template, the section of code which produces the "date heading" for each post is outside the main "includable" for the blog posts. Since we are making two columns of posts appear on the home page of this template, we need to alter the placement of the date-header code, otherwise the date-headings will appear out of place! This step is probably the most complicated of the whole tutorial, so take your time and do this carefully :) For this, we will need to delve into the widget template for the posts section. You need to ensure you have checked the "Expand widget templates" box on the Edit HTML page: Now search for the following section of code: <data:adStart/> This section brings together all elements of your blog posts to display in your active blog pages. The lines I have highlighted in red generate the date-heading for each post. These are the lines which need to be moved to a different place in the template code. Highlight these three lines in your template, and key CTRL+X (or CMD+X) to temporarily "cut" them from the template. These will be copied to your clipboard so you can paste them in the new location. Once you have "cut" these three lines, locate this line of code in your template: <a expr:name='data:post.id'/> And paste the three "cut" lines immediately after it. Now preview your blog to ensure the date-headings are visible above each post. If all looks well, you can proceed to save your template. Step 4: Add conditional CSS to make posts appear side-by-side on non-item pagesWe have modified many aspects of our Minima template in preparation for the new posts column on non-item pages. Now we can add some conditional CSS which will make posts appear side-by-side! This is actually quite easy! All you need to do is copy the following section of code to your clipboard: <b:if cond="data:blog.pageType != "item""> And paste this immediately after the closing </b:skin> tag in your template code. You can then preview your template, and will be able to see the results right away! Save your template at this point, and view your demonstration blog in your browser. Have a play around with the pages, viewing archives, performing searches and the like. You will see that on non-item pages, the posts appear in narrow columns side-by-side, whereas on item pages, the post will span the width of both columns! Taking care of images in your newspaper-style templateYour new post columns are slightly narrower than the width for "large" images which you may upload to your posts. This means that large sized images will be "cut off" when displayed on non-item pages. There are two ways you can work around this:
This would reduce the width of large images to only 280px on non-item pages, whereas on individual posts, the images will display at full width. However, any images which would usually be smaller than 280px in width would be stretched to this width. You could of course choose for images to be even narrower (eg: 100px or 150px) if you plan on serving smaller sized images as well as large ones. Simply change width: 280px to your chosen specification. SummaryIf you would like to apply this technique to a different template, or would simply prefer a summarized version of this template, here is a quick summary of the steps required to make posts appear side-by-side in a Blogger layout:
If you have any useful tips to accompany this tutorial, or would simply like to leave a comment, please feel free to leave your message below. The reason for this is that the 'all-head-content' includable (the content generated for page headers when your blog is viewed in a browser) has been updated to include the following line:
Thankfully, there is an easy "fix" for this issue! Simply locate the line(s) of code you have added to your Blogger template to reference your custom Favicon, and move these just before the closing </head> tag in your template. The reason this trick works is because the code to reference your custom favicon appears after the lines added by Blogger to reference the Blogger favicon. In all HTML documents, code which appears later in the mark-up takes precedence over any tags which appear earlier (unless of course, statements are attached to make the earlier tags preferential!). How to link to a custom favicon in your Blogger blogIf you do not already use a custom favicon for your blog, you may be interested to learn how to create one, so here are some useful links to other articles and resources on site:
Favicons and Internet ExplorerWhen using Internet Explorer 6, you will only see favicons appear in the address bar if you have bookmarked the site you are viewing.The tern "favicon" is short for "favorite icon", and as such Internet Explorer will only display the favicon of a site if the site is recognized as one of your favorites (ie: if you have bookmarked the site in your browser!). Some people also report that the favicon will only display when viewing the particular page they have bookmarked, and not the entire site. In this case, you would need to restart your browser for the favicon to appear in the address bar of all pages. Your internet security settings (both in Internet Explorer and any anti-virus/anti-spyware programs you use) may also affect whether or not favicons will be displayed in IE6. Were you able to fix your broken favicon?I hope this post has provided a useful overview of how to fix the link to your custom favicon in your Blogger blog. Please feel free to leave your comments and suggestions below. Yesterday a few readers emailed me to explain that there were issues with Blogger's embedded comment form.
The issue was that the "Comment as" drop down menu was empty, preventing readers from choosing an identity for their comments which in turn prevented comments from being left. As yet, the Blogger team have not acknowledged this issue on the Known Issues (or any other blog), and as far as we can tell, the problem should now be resolved. It could have been a browser-related issue, or perhaps Blogger was making some improvements to the embedded comment form which caused this temporary glitch? Software Testing Zone wrote about this issue in detail, and has since updated this post to explain that this issue appears to have been resolved. I personally did not experience any problems with the embedded comment form for any of the Blogger blogs I viewed over the past few days, but I am interested to learn more about this issue in case something similar happens in the future. For anyone still experiencing this problem when reading Blogger powered blogs, try refreshing your browser (press F5 for most browsers, which completely refreshed the page), or clear cookies and temporary internet files to ensure you have a fresh version of the page. If you were affected by issues with the embedded comment form, please do leave a comment below with some information, such as the browser you were using (Firefox, IE6/7, Safari), whether the blog was using a custom domain or a customized template, etc. Thank you all for keeping me informed about any Blogger issues you are experiencing! Even though I am not officially affiliated to Blogger, I will do my best to help the Blogger community in any way I can. In the spirit of Halloween, I have designed another dark and spooky Blogger template for your free download. Hell's Kitchen is a wide two column theme, with a sidebar floated to the left and integrated navigation links in the header.All of the fonts and colors used in this theme are customizable through the Fonts and Colors section of the Blogger dashboard. It's easy to use, and should work "right out of the box" with little customization required. Take a look at the Hell's Kitchen demonstration blog to see this design in action. The header and footer sections include a "skulls" background image which is a slightly modified version of the "Bones" tile from DinPattern. I've also included the PSD of the header banner so you can modify this for your own requirements. The font used in this header banner is "Bleeding Cowboys" by Last Soundtrack which you can download for free from DaFont.com. Preview Hell's Kitchen Download the "Hell's Kitchen" Blogger Template Package (Zip File) How to upload this templateIncluded in the Zip folder, you will find the following files:
Back-up any important widgetsWhen you upload a new template to your blog, you may be prompted to delete some of your existing widgets. This is because the new template does not have "placeholders" for all existing widgets within the code.If your existing template includes many important widgets, it is good practice to back-up these widgets before uploading a new template. Peter Chen of Blogger Tips and Tricks recently posted a great article explaining how to back-up your Blogger gadgets. You may also like to read my tutorial about transferring widgets from one template to another. Uploading the XML file to your blogOnce you have extracted the files and have backed up any important widgets, log in to your Blogger dashboard and select the blog you wish to upload this template to. Then go to Layout>Edit HTML. Near the top of the screen, you will see the following section: Click the "Browse" button, and locate the "hells-kitchen.xml" file where it is saved on your hard drive. Then click the "Upload" button. You may be prompted to delete some of your existing widgets, so be sure you have backed up these widgets if they are required in your new template design (see above). Finally, you should see a message which says "Your changes have been saved. View blog". This means that your template has been successfully uploaded, and you can now take a look at your new design. Configuring your new templateNavigation LinksThe Hell's Kitchen template contains a Links List widget in the header which provides navigation links. To make these links appear, you need to go to Layout>Page Elements in your Blogger dashboard, click the "Edit" link for the Links List widget, and add your links as required. These links will automatically appear side-by-side to the right of the blog title. As this section is 400px wide, you can add around 4 or 5 links of average sized link text before your links will appear on a new line beneath. Adding a logo to the headerIn the demonstration blog for Hell's Kitchen, I used a custom header image (which you can find i the download folder). This image is 400px wide, and uses the Bleeding Cowboys font from DaFont.com (free for personal use).I have included the PSD source file in the download folder which you can adapt to include your own blog title. Be sure to "Save for web" in GIF format, and use a dark grey color as the background on which transparency is overlaid. Alternatively, you can create your own logo (if desired), which would need to be no wider than 400px. Once you have modified or created your logo, go to Layout>Page Elements in your Blogger dashboard and click on the "Edit" link for the Header widget. Click the "Browse" button to select the logo image from your computer, and ensure you have checked the "Use instead of title and description" selection so this will display instead of the text-based title and description. Finally, save these changes and enjoy your Halloween themed Blogger layout! More Halloween Goodies for your Blogger blogLast year, I released two other free Halloween themed templates for Blogger which you can download below:Smashing Magazine is also offering a selection of high quality Halloween goodies which you can use to decorate your blog and desktop: I haven;t had much time to research Blogger downloads for Halloween, so if you have designed or know of other downloads, please add these in the comments below and I will update this post with the information. Final wordsLastly, I want to apologise for having spent so much time away from my blog. For various personal reasons, I needed to take some time off.But I'm back now, and hope to provide you with some great Blogger tutorials, free templates and more to make-up for the time I've spent offline ;) I hope you enjoy using this template in your Blogger blogs! Please let me know your opinions by leaving your comments below. Theme Forest is the first template marketplace I've encountered which offers premium Blogger templates for download, alongside web templates and themes for other CMS's.At the time of writing, there are 7 premium Blogger XML templates available for download, though I suspect many more will become available in the coming weeks as more designers create themes for our favorite blogging platform. These themes are very reasonably priced (between $10 and $12 at the moment) and as they are offered as premium downloads, they have been designed exclusively by the theme author. My offerings on Theme ForestFor some time, I have considered designing premium Blogger templates, but had been anxious about the amount of time and work involved in creating a site through which to sell these. So when I discovered Theme Forest, I decided this would be a much better entrance for me into the realm of premium template sales.At present, you can find two of my own Blogger template designs available in the marketplace: Lotus and Underland: Both of these themes are three column designs and, as you should expect of a premium theme, these offer many non-standard features. The download files include all template images used in the theme and a comprehensive PDF which includes instructions for upload and set-up. Here you can browse the full selection of Blogger themes on Theme Forest. I also have two more premium themes in progress which should be complete and ready for sale in the next couple of weeks. Will I still be creating FREE Blogger templates?Of course! Blogger Buster is my pride and joy: I love writing about Blogger and creating templates for others to use, and I assure you that I'll continue to create free templates too.As I'm sure many of you will understand, I do still need to put food on the table. Anything I earn from designing for Theme Forest will be extra income which enables me to spend more time researching and blogging than working on freelance projects. Downloading themes from Theme ForestTheme Forest is one of three marketplaces housed on the Envato blog network (the others being FlashDen and Audio Jungle).To purchase a theme or other offering from these marketplaces, you need to register your free account and make a deposit (min $20) which can be spent on any of the marketplaces, and on any theme.You can make a purchase by choosing the "purchase" link on any theme page, and as far as I can tell, these downloads are available for you to access at any time, ensuring you can download any updates or changes to your themes which have been made by the theme author. Become a Theme Forest author!Those of you who design Blogger templates may be interested in how easy it is to become a theme author, so I'll fill you in on the details.To become an author, you first need to register your account, then read through a comprehensive tutorial which explains the process and responsibilities of becoming an author. Before you can upload files, you need to complete a questionnaire to ensure you understand the terms and conditions, and how to organize/upload your themes and files. After this, you will be able to upload your templates and themes for review by a member of staff. How themes are pricedOnce you have uploaded themes for review, your work will be assessed for quality and assigned a price (we cannot choose the prices for our own work at present).Wordpress themes seem to attract the highest prices, while Blogger and general Site templates are priced bwtween $10 and $15. Earnings and referralsWhen you first become an author, you will earn 25% of all sales. Once you have sold more than $500 worth of themes, you will be offered the opportinity to become an "exclusive author": this means that you can choose to sell your themes exclusively through the Theme Forest marketplace, and your commission will increase to 35% (and possibly up to 50% in the future).To many, this may see, a very low commission for theme authors (I must admit I'm a little disappointed to earn only $2.50 each time one of my own themes is downloaded). However, I should point out that Theme Forest take on the responsibility of advertising, hosting, distribution of files and so on. This means that authors have no other work than designing and uploading their themes, as all other requirements are taken care of by Theme Forest staff. Referrals generate 50% in commission. This means that if you refer a new user who deposits $20 across the Envato marketplace network, you will earn $10. This offers much more incentive for authors to generate referrals for their themes and for users to promote the availability of themes from their own sites. What do you think?I would love to know your opinions about Theme Forest as a purchaser or author, and any feedback you may have about the premium Blogger themes I have created, so please feel free to leave your comments and opinions below.An important (and often overlooked) aspect of good blog design is navigation. In order to encourage visitors to read more of your posts, stay longer and make repeated visits, you need to make it easy for readers to navigate and find the information they need!
Adding a list of related posts, links to recent articles and easily accessible categories are among the most effective techniques. Another method which I have noticed in many popular blogs is the "breadcrumb trail": a message above posts which explains how the page being read fits into the heirachy of the blog, with liks to the containing categories. Hoctro wrote a very useful tutorial which explains how to add a "breadcrumb trail" on item pages in Blogger. However, I preffered to use a method which would display a message on all pages of the blog, including Archives and Search/Label pages. So in this tutorial, I'll explain how to add a status message for each page of your blog, with links to the containing pages for easy reference and increased page views. How the status messages will appear in your blogHere are some screenshots of how this customization would appear in your blog design:On the home page: On item pages: On archive pages: On search/label pages: As you may notice, the default "status message"which appears on your search/label pages is replaced by this new breadcrumb trail, ensuring that this area blends completely with your blog design. I have tried to ensure the code used in this tutorial will allow the "breadcrumb trail" to blend with other elements of your template, though you can also customize the code and styling to control the design even more. How to add the "breadcrumb trail" to your Blogger templateThis is a surprisingly easy customization to add to your Blogger template, and can be achieved in only three steps:Step 1Go to Layout>Edit HTML in your Blogger dashboard and ensure you have checked the "expand widget templates" box.Step 2Using your browser search function, locate this exact phrase in your Blogger template code:Replace this entire line with the following block of code:Step 3Find the closing </b:skin> tag in your template (again using your browser search function if it is helpful).Just before this tag, add the following lines of code: If your template does not include the variable $bordercolor, replace this phrase with the hex value of a chosen color instead (eg: #000000 for black). Now preview your template. In the preview, you should see the "Welcome to [your blog name]" message which tells you this customization has worked. If nescessary, you may want to add more margins/padding/a background color to the style statements for #places. Once you have finished, you are ready to save your template. You can then take a look at various pages in your blog to see how this breadcrumb trail operates. Your opinions?I hope this tutorial may be a useful method for enhancing navigation and page-views in your own Blogger template. Please let us know what you think of this hack or how you may have adapted this for your own requirements by leaving a comment below.As today is my birthday, it seems the most appropriate time to introduce you all to my latest blogging venture. We Love Blogger is a gallery and news portal for Blogger fanatics! Here you will find great Blogger designs to inspire you; links to the latest Blogger news and useful tutorials to help you build a better blog. The home page should provide easy access to the areas of most interest, with the gallery on the left, news/tips in the center, and a regular sidebar on the right. In the header, you will find links to submit a new design or news article for later submission to the site. We Love Blogger is an idea I have had for some time. As you may have read in my previous showcase articles, I love to be inspired by great designs (especially those which prove the potential of Blogger as a blogging platform). Learning from the experience of other bloggers is important and highly useful when discovering new and interesting functions for this platform. On Blogger Buster, I think tutorials and lengthy articles have become an expectation. Rather than add many short posts and links on this site, I feel it's more useful for readers (and better coverage for Blogger authors) to feature their articles on a dedicated site. At present, the design (and some functions) of We Love Blogger is not quite complete. Once I am home from vacation, I'll be sure to enhance the overall look and some usability issues for the site to make it a better place to visit and find articles of interest. In the meantime, please visit We Love Blogger, let me know what you think and also any suggestions for how the site can be improved. I hope you enjoy We Love Blogger and will find this a useful addition to the Blogger Buster family of sites. For the next week, I'll be basking in the sun with my family as we're going on a long overdue holiday. This means I'll be unavailable to answer any emails or comments until Monday 6th October, though I have scheduled some posts to be published in my absence ;)
In particular, watch out for an announcement on Tuesday (which incidentally is also my birthday). See you soon everyone! Some of my favorite (non-Blogger) blogs display a "sideblog" in their layout in which to display news snippets and links to interesting sites. These sideblog entries (often called "asides" or "link blogs") are much shorter than a regular blog post, and do not appear in the regular posts section.
While it would be simple to create a sideblog using a links list widget, Twitter, or by adding a Del.icio.us RSS feed to the sidebar, such methods would not allow readers to leave comments on our blogs about these entries. To allow commentary for sideblog entries, they need to be regular blog posts in a category whose posts are filtered from the front page. In this post, I'll explain how you can filter posts of a particular label from being displayed on your blog's homepage then use this label's feed to display your sideblog. Step 1: Back-up your template!Before making any changes to your Blogger template, it is always good practice to make a back-up of your existing template. It is especially important for this Blogger hack: we will be filtering which posts display on the homepage, and any errors could result in no posts being displayed at all!To back up your Blogger template, go to Layout>Edit HTML in your Blogger dashboard, and click the "Download full template" link near the top of the page. You will then be prompted to save your template as a file to your computer hard drive which you could use to restore your template (if you make a mistake) or revert back if you change your mind about using this hack. Step 2: Editing the posts loopFirst, go to Layout>Edit HTML in your Blogger dashboard, and ensure you have checked the "Expand widget templates" box.The code which we need to edit is located within the "Blog Posts" widget. Finding the correct section of your template to edit can be a little tricky, as there are several elements which at first glance appear to utilize similar code. Here is the section which we need to edit: In your own template, this code may not contain the <data:adStart/> and <data:adEnd/> tags, though this should not affect the overall functionality of this customization. If you struggle to locate this section of code, use your browser's search function to locate the following phrase: hfeed which should be present no matter which template you are using.When you have located this section of code (or similar), replace it with the following instead: Be sure to highlight all of the code and replace with the section above in its' entirety! Otherwise, when you attempt to preview or save this code, you will receive errors saying that tags are not closed properly.In the code above, you will notice I have highlighted "Sideblog" in bold red. This is the name of the label which we will be filtering from the display of posts on the home page. You can change this to any label name you prefer. This is case sensitive, so be sure to use the same case in the code as the label you will use to tag your posts (ie: "Sideblog" is not the same as "sideblog"). Once you have edited this section of code, attempt to preview your template. If any of your recent posts have already been tagged with the "Sideblog" label, you will now notice they are missing from the output of posts. Provided there are no errors visible when you preview your template, you can now save your edited template. Step 3: Adding a feed widget to display your sideblogNow we have filtered "Sideblog" posts from the list of recent posts on the home page, we need to add a widget to display sideblog posts in the sidebar.To achieve this, we will use the sideblog label feed. All Blogger blogs which use labels produce a feed of posts from each label. The URL for label feeds appears like this: http://yourblog.blogspot.com/feeds/posts/default/-/LabelNameWhere "LabelName" is the name of the particular label you wish to use. This URL structure also works for custom domains. Simply replace "yourblog.blogspot.com" with the main URL for your blog. In this example, we will use "Sideblog" for the name of the label in the feed, which would look like this: http://yourblog.blogspot.com/feeds/posts/default/-/SideblogUsing Feedburner to display sideblog postsThe simplest way to display your sideblog is to burn your label feed through Feedburner, and use the BuzzBoost widget code within an HTML/JavaScript widget.To do this, go to Feedburner.com and add the URL of your label feed. Then go to Publicize>BuzzBoost in the dashboard for this new feed. The code required to display your sideblog posts as HTML will be generated for you automatically which you can paste in an HTML/JavaScript widget in the Page Elements section of your blog. Alternatively, you could add this as a widget automatically using the widget installer option. Using a regular Feed widget to display your sideblogIf you prefer not to use Feedburner, it is possible to display your sideblog using a regular feed widget. However, this will require more editing of your blog's HTML code (as Feed widgets will only display the post titles by default).Here is how to use a Feed widget to display post summaries for a sideblog in Blogger:
Here is an example of how your new sideblog could appear: Using your new sideblogIn order to use your newly added sideblog effectively, there are a couple of things which you ought to be aware of. I'll explain all of these "caveats" to ensure you can make use your sideblog to the full potential.Sideblog entries should only be labeled with the "Sideblog" label!When writing a sideblog post, be sure you only add the "Sideblog" label (or the name you chose when adding this function to your template). This label will be case sensitive, so "sideblog" and "Sideblog" will appear as two different labels.If you do add more than one label to your sideblog posts, these posts will also appear in the main posts column, alongside your regular blog posts. Sideblog images should be sized to fit their containerThis one may be a little more tricky.You can use images in your sideblog posts. However, you should ensure they are no wider than your sidebar (or the widget area they are contained in). For example, if your image is 400px wide, being displayed in a sideblog whose width is only 200px, you will notice one of two things:
Images detract from the length of the summaryWhen you display an image in your sideblog posts, the HTML code for the image is counted towards the text count of the summary, thus shortening the amount of text which will be displayed. If you prefer to display more text, be sure to place images at the bottom of your posts so these will only be displayed on item pages (not in your sidebar).Using this filtering function for other template featuresIn this tutorial, I have explained one possible use for the filtering of posts by label: how to create a sideblog.Those of you who actively design or develop Blogger templates may already see the possibilities of using this function for possibilities like:
I hope you have enjoyed reading about filtering posts by label in this tutorial, and now have the knowledge required to add asides in your own Blogger template. Please let me know your thoughts and opinions by leaving a comment below. In addition to the free Blogger templates offered here, I also design premium Blogger themes which are distributed through ThemeForest.net.My premium Blogger themes are high quality, original templates with exclusive designs and increased functionality. They are also very reasonably priced: each theme or theme package costs only $10! Here are screenshots of my latest premium Blogger themes with links to their download pages on ThemeForest: Planet PlayThis is a playful, colorful theme with a space-cartoon theme.Features of this theme include:
Elegumus Business Theme Package (Two for one!)This theme package includes two distinguished and professional themes in one download: the neutral version (pictured right) and a dark version too.Features of this theme include:
Underland![]() Underland is a striking three column template for Blogger, which is highly configurable with many dynamic elements. Features include:
Read more and download from ThemeForest Lotus This is a unique three column template for Blogger based on a grid style layout.The main features include:
Included is a full “Readme” file with instructions, widget codes, images and the template XML file for easy upload to Blogger. Learn more and download from ThemeForest More from Theme ForestThemeForest is a relatively new site where you can find premium, high quality web templates and themes for most CMS platforms (including Wordpress, Joomla, Expression Engine and, of course, Blogger!), all at affordable prices. In addition to my own premium themes, you can find quality Blogger templates by other authors too! There is a thriving community at Theme Forest which enables you to post comments or ask questions on a theme download page before purchase, or participate in the forums. So if you have time to browse through some high quality themes, please visit Theme Forest to take a look at what's on offer - you may even be tempted to become an author yourself! For those of us who hide the Blogger nav-bar, it can be awkward to access our Blogger dashboards to create a new post, change settings or customize the layout of our blogs.So after a bit of brainstorming, I realized how we could add an "Admin control panel" to our Blogger template, which is only visible to the administrators of a blog (and not to regular readers). You can read my method and instructions in full over at BloggingTips.com, where I write regular posts about Blogger and blog design. I hope this article will be useful for many of you! Please let me know your opinions about this post by leaving a comment here or at Blogging Tips where you can read through the archives of Blogger tutorials and enjoy loads of other tips about blogging. There could be no worse time for things to go wrong than when I am preoccupied with other important projects! Unfortunately, many of you may have experienced some issues using the site this week. So please allow me to explain what's going on, and why I haven't been around as much as I would like. Issues with the Top Commenters and Popular Posts widgetsThe biggest issue so far is that my Top Commenters and Popular Posts widgets have suddenly stopped working.Both of these widgets are configured using the Yahoo! Pipes service, and due to their popularity and extensive use, the pipes used for these widgets have been putting a strain on the pipes service (causing them to be temporarily disabled). Unfortunately, this is going to become a regular issue. I don't think it is possible to host pipes on my own servers (to bypass the bandwidth issue) and while these widgets use the same Pipes to output the widget contents to the many bloggers using these widgets, there will continue to be a strain on this service. The best all-round solution would be for individuals to make a personal copy of the pipe for their own blog and change the pipe URL within the widget to match that of their own Yahoo! pipe. Luckily, I made "back-up" copies of the pipes used for these widgets, so I will get turorials for this method uploaded as soon as possible. I do sincerely apologize to all affected by this issue! Before I had created these widgets, I had thoroughly checked the documentation for Yahoo! Pipes though was unable to find any information regarding limitations of use or bandwidth. In essence, I had thought it was safe and reliable to use these pipes to deliver content for your widgets. I am glad that the Yahoo! team were able to explain this situation, and hope we can get your widgets working again soon by helping you create pipes specifically for your own Blogger blogs. Blogumus widget issuesThe Blogumus animated tag cloud widget is without a doubt the most popular widget delivered on this site!For most users, this widget works without a hitch, though some readers reported that the widget is blank and does not display tags at all. After much trial and error, Roy Tanck helped me create an alternative method of installation for this widget which embeds the widget as a flash object rather than generating it through JavaScript. This new version works well in most Blogger templates, though unfortunately not for everyone. I really don't understand why this works for some blogs but not for others, and so far have been unable to find a definitive solution to this problem. The only other possible method would be to hand-code the widget for your own blog, which would require you to add each url for your labels individually. However, even this method is not guaranteed to work. If enough people are interested in this method, I will write up a tutorial to help you install Blogumus by hand-coding each link, so please let me know if you would like to try this by leaving your comments below. Comment moderation for older postsFor the first time ever, I had to enable comment moderation this week.Generally I feel confident that Blogger's anti-spam systems will pick up on *most* comment spam before it ever reaches the post. But when spammers disguise their comments, they seem to slip past the radar. So I have temporarily enabled comment moderation for older posts (as in my experience, recent posts are rarely targeted by spammers). This means that if you leave a comment on an older post, it will be held in moderation until I have had the chance to review it. Of course, when the main spamming culprits have ceased their unwanted comments, I will lift the moderation ban and your comments will appear immedietly after posting. Why I've not been around much this weekWhile blogging is my passion, there will often be times when I am unable to be online as much as I'd like. As many of you will already understand, I'm also a full-time mommy so when I take on occasional work, this means I have much less time to spend maintaining Blogger Buster and replying to all my emails.Now that most of this work is completed, I can concentrate on blogging and also on some other interesting projects which I hope will allow me more financial freedom in the future (in other words, more time to blog!). I will be offline from 9/28 to 10/5 as we're going to visit family abroad and it's doubtful I'll be able to get online. Thanks to Blogger's scheduled posts feature, I can still provide updates while I'm away :) Any other issues?Have you experienced any other problems using Blogger Buster which I may have missed? If so, please let me know about this so I can fix the issue as soon as possible.I hope you all continue to enjoy reading my posts despite the occasional hiatus! Thank you to all Blogger Buster readers for your support and continued readership! |