Showing posts with label banner ad. Show all posts
Showing posts with label banner ad. Show all posts

Adding a Banner to Minima Template

In my previous post I showed you how to add a banner to the Thisaway blogger template. Now lets look at how to add a banner to the Minima Blogger template. To add a banner to the Minima template is much easier to do than the Thisaway template because it doesn’t require that you add anything to the CSS. The ideal location for a banner on the Minima template is directly beneath the header. To add a banner directly under the header simply

Step 1 : login to your blogger account and click on the layout tab. Then select edit HTML

Step 2 : Scroll down to the end of your HTML code and locate the script <div id=’content-wrapper’>.

Step 3 : paste your banner code directly under <div id=’content-wrapper’>.

Step 4 : Click save template and your done.

You will notice in my example that I have provided that I place the banner code inside <center></center>. List will align the banner in the center of the page, and give you the ideal placement of your banner.

Good Luck

Adding a Banner to your Blogger

In this demonstration I am going to show you very easily how to add a 468 x 60 to the header of your blogger account. For this demonstration I will be using the theme Thisaway. To add a 468 x 60 banner to your blogger requires that we place three pieces of code inside your Blogger template.

Step 1: Once you have logged into your blogger account go to the layout tab and select edit html.

Step 2: The first piece of could that we need to enter into our template is a
inside our CSS. Now if you’re not familiar with programming don’t worry about it, just simple copy the code below.

#banner_468_60 {

float: right;

width: 468px;

height: 60px;

position: relative;

text-align: center;

padding-top: 2px;

padding-bottom: 2px;

padding-left: 2px;

padding-right: 2px;

}

Now you can place this piece of code anywhere within the CSS for the layout.

Step 3: Once we have defined the CSS for our banner now were are ready to place the
inside our template. Now you are going to want to place the
code wherever you are going to want your banners to show up at. For this demonstration we are going to place it inside the header. Simply copy the code before and place into your Blogger template. Since we are wanting our banner to show up in the header we must placed our code right below
, which you will find inside your template.

Placed Banner Code inside

If you have done everything right you should be able to view your blogger and see you banner ad displayed in your banner.

Now to adjust the alignment of your banner simply go back to where you enter the CSS for the Banner and change the padding until you find the alignment that you like.

Note this particular code only works with the Thisaway template. Over the next week or so I will place the steps to adding a banner to other blogger templates so check back.