How to Add a Free Blog Background to your Blog using any of the Template Designer “Simple” Themes

I have noticed that there are a lot of people out there still using the Minima theme for their blog, simply because the free blog background codes don’t work well with the new Template Designer Themes.  I will be working on tutorials for all the different themes.  In this first tutorial, I will show you how to add a background to all 7 of the “Simple” Themes.

Step #1: Select the Simple Theme that you would like to use.

Default Blue Simple Theme

Step #2: Find a Free Blog Background that you like and copy the code (right click > Copy, or ctrl + C on your keyboard).  I picked a background from Shabby Blogs.

Shabby Blogs Free Background Code Screenshot

Step #3: Go to your Blogger Dashboard and click on “Add a Gadget” (it doesn’t matter where, I just usually pick one of the bottom ones).

Add a Gadget

Step #4: Select the “HTML/JavaScript” Gadget.

HTML/JavaScript Gadget

 

Step #5: Paste (right click > Paste or ctrl V on your keyboard) the free background code in the text area and click on Save.

Free Background Code in the HTML/JavaScript text Field

 

This is what it will look like now:

Screenshot of Simple theme with a Free Blog Background before changes

 

Step#6: Go to your Template Designer and click on the Advanced tab, and then the Backgrounds tab.  No change your Outer Background, Main Background, and Header Background to Transparent.

Screenshot of Template Designer Background Colors

 

Step #7: Go to your Adjust Widths tab, and change the width size to fit within your new blog background.

Adjust Widths

If you are using the Blue, Orange, Grey, or White version of the Simple Template, then you are finished here, if you are using the other versions (that use images), continue on to the next steps.

Simple Template with a Free Blog Background

 

If you are using one of the other themes, you blog might look something like this.

Simple Template with a Free Blog Background

Step #8: Go to your Background Tab and click on “Remove image

Background Tab of Template Designer

 

You can either stop at this point, or if you still have a header image, like below, then move on to the next step.

Screenshot of the Header Image in the Simple theme

 

To get rid of that gradient image, add this code to your Advanced > Add CSS :

 

Add CSS to Remove Header image

 

Finally, if you have a line going through the width of the page, underneath the Header/Menu Bar (the green Simple template does that).  Then go to the Advanced Tab, and Accents, and change the “Separator Line Color” to Transparent.

Line Seperator Color

 

There you have it, you can use any of the simple themes with a Free Blog Background!

Add a Free Blog Background to a Simple Theme Template

Beginning HTML Crash Course!

Use this crash course in HTML to style your posts and sidebars like a pro!

Quick Reference Guide:

The Basics:

HTML stands for “Hypertext Markup Language.” It is the hidden “instructions” that tell your web browser (such as Internet Explorer and Firefox) what to display on a page. HTML is made up of a series of commands. Each command is known as a “tag,” which start and end with an angle bracket. a tag can also end your command, using a slash. The command from beginning to end would look something like this:

<command>element here</command>

Now that you have learned about tags, the basic building block of HTML, all that is left to learn are the different types of commands and how you can apply them to elements on your page.

Text Formatting:

You no longer have to be limited to plain, boring text in your posts! In this section, I will show you how to change the size and color of your text, and much more. Just keep in mind, a little goes a long way!

Below are different text style tags and a preview of what they do:

Bold Text: <strong>text here</strong> – text here

Italic Text: <i>text here</i> – text here

Underline Text: <u>text here</u> – text here

Strikethrough Text: <del>text here</del> – text here

Small: <font size="1">text here</font> – text here

Medium: <font size="2">text here</font> – text here

Large: <font size="3">text here</font> – text here

X-Large: <font size="4">text here</font> – text here

Red: <font color="red">text here</font> – text here

Blue: <font color="blue">text here</font> – text here

Hot Pink: <font color="hotpink">text here</font> – text here

Green: <font color="green">text here</font> – text here

Left: <p align="left">text here</p>

text here

Center: <center>text here</center>

text here

Right: <p align="right">text here</p>

text here

Now let’s try combining some of those text formatting tags:

<strong><center><font size="4"; color="hotpink">text here</font></center></strong>


Preview:
text here

Image Formatting:

Below you can find the HTML tag for placing an image. Note that it is one of the few HTML commands that do not require a closing tag.

<img src=”Your Image URL here”>

For example, the code with my image URL inserted is:

<img src="http://thepixelista.com/square-button.png">

Preview:
Image Borders:
*Play with the values in red to achieve your desired look*

<img style="border:1px solid black;" src="http://thepixelista.com/square-button.png">

Preview:

<img style="border:5px double blue;"src="http://thepixelista.com/square-button.png">

Preview:

<img style="border:3px dotted hotpink;" src="http://thepixelista.com/square-button.png">

Preview:

<img style="border:2px dashed green;" src="http://thepixelista.com/square-button.png">

Preview:

<img src="http://thepixelista.com/square-button.png" width=70px; height=70px;>

Preview:

<img src="http://thepixelista.com/square-button.png" width=40px; height=40px;>

Preview: