Blogger Templates for your blogspot Blog, Adsense Blogger template, Making Money Online With Tips Tricks

Nice and professional Blogger template. This is 2 column blogger template. Zinepress was bloggerized by Blogger FAQs, and designed by Andrew Lindstrom.
Category : 2 Columns, Adaptation of Wordpress, Black, Fixed width, Magazine, Right sidebar, White, Neutral, Ads Template, Adsense template for blogger.


DEMO | DOWNLOAD

In Labels: , , , , , , on .

Placing your adsense ads inside the post will increase the CTR (the number of times your ads clicked/number of times it is shown). And it means that more CTR you've got = more $$$ cash.

Placing ads inside the post or between post have more change to be clicked rather than ads in footer, left or right sidebar that everybody knows that there is an ads placement.
Here is step by step :

1. Login blogger, then open layout

2. Click on the Edit link on the blog post area.


Then You'll find a pop up window....

3. Then check at the 'Show ads between the posts' to show the adsense ads.

4. You can modified your adsense ads colors and size.


Now your adsense is ready. The ads will shown at the bottom in every posts you have.

And now 'How to put the adsense ads inside the posts?'
This is the question for many blogger and here is the tutorial to put an adsense code inside your post.

1. Now you are login to your blogger account, then click Layout > Edit HTML
Check at the 'Expand Widget Templates' first

2. Find the script below:
<b:if cond='data:post.includeAd'> <data:adEnd/> <data:adCode/> <data:adStart/> </b:if>


3. Then replace that code with this code below:
<b:if cond='data:blog.pageType != "item"'> <b:if cond='data:post.includeAd'> <data:adEnd/> <data:adCode/> <data:adStart/> </b:if> </b:if>
4. scroll again and find data-post body

5. Next is, paste the code below just above that code (To show ads above the post body). But If you want ads to show below the post, just insert the code below that tag.
<b:if cond='data:blog.pageType == "item"'> <b:if cond='data:post.includeAd'> <data:adEnd/> <data:adCode/> <data:adStart/> </b:if>
</b:if>


Okay, it's done baby.
Any problem just point them here.

In Labels: on .



GoogleChrome Template for blogspot. Download google chrome template for blogger, googlechrome blogspot layout, google chrome blogger template, free download template google chrome for blogspot.

Template Info:
- Google chrome blogger template
- Blue, orange, white dominant color
- Blockquote ready template
- 3 Columns, Google Chrome, Elegant, XML, Adsense Friendly,


DEMO | DOWNLOAD

In Labels: , , on .

Swapping blogger title will help your blog to be crawled.
It's good for your blog.
Getting indexed by search engine and will increase your blog ranking.
Follow this step below to use it :

1. Find <title><data:blog.title/></title> on the <Head> Section
2. Replace the line with
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>

3. It's done, your template are ready to go.

In Labels: on .

Author: Cebong Ipiet
Properties: 3 Columns, Brown, Fixed width, Right sidebar
Category: Art, Vector


DEMO | DOWNLOAD

In Labels: , , , on .

Author : GoogleBoy
This template is 3 Columns, Blue, Fixed width, Fresh, Green, Right sidebar, Web 2.0, White, Yellow. Nice theme from googleboy. Download here free.
Category : Internet, People, Software


DEMO | DOWNLOAD

In Labels: , , , , , , on .

Author: Cebong Ipiet
Properties: 3 Columns, Brown, Fixed width, Right sidebar
Category: Art, Vector


DEMO | DOWNLOAD

In Labels: , , , on .

Vibrant Blogger XML Template
* 3 columns
* 3 tabbed ajax menu
* Stylish navigation menu
* Supports widgets on Blogger
* XML template
* Adsense Ready
* XHTML & CSS compliance
* Re-edited for newbies


DEMO | DOWNLOAD

How to install this template?
1. Don't forget to replace the FEED-URL into your Feed URL Address
2. Upload all the files on the Images Folder into your Googlepages.
3. Then rename all the YOUR-GOOGLE-PAGES-NAME into your googlepages name
For example:

* http://YOUR-GOOGLE-PAGES-NAME.googlepages.com/vt-bg.gif

Become
http://MisterWong.googlepages.com/vt-bg.gif
4. Done

3 columns adsense ready template for blogspot, adsense ready blogger templates, free download blogger template for adsense, blogger adsense template, adsense template for blogspot, free download adsense blogger templates.

Update 2
i see that this template is having problems while showing blockquote texts , heres a simple solution

find these lines :

blockquote p {
font-family: georgia, arial;
line-height: 1.5em;
font-size: 12px;
color: #366799;
}

and replace with these

blockquote {
font-family: georgia, arial;
line-height: 1.5em;
font-size: 11px;
color: #366799;
}

preview and save

If you want more , you can support me

In Labels: , , , , on .

Here is new black blogger template.
This template was made by Cebong Ipiet
Properties : 3 Columns, Black, Fixed width, Right sidebar
Category : Black, White, Neutral.


DEMO | DOWNLOAD

In Labels: , , , on .

Ad placement position in the blog we have a click through rate on the ad. Therefore, your ads have high CTR, we must be clever-clever set the size and position of the ad placement on our blog.
What is needed to do that?
Needed only to install Selective EXPANDABLE Post Hack.
Let's do.

Selective install EXPANDABLE
1.Log in to Blogger dashboard> Select Layout> HTML, check the Expand Widgets Templates
2.Search </head>
3.Copy and paste the code below just above the </head> tag

<b:if cond='data:blog.pageType != "item"'>
<script type="text/javascript">

var fade = false;
function showFull(id) {
var post = document.getElementById(id);
var spans = post.getElementsByTagName('span');
for (var i = 0; i &lt; spans.length; i++) {
if (spans[i].id == "fullpost") {
if (fade) {
spans[i].style.background = peekaboo_bgcolor;
Effect.Appear(spans[i]);
} else spans[i].style.display = 'inline';
}
if (spans[i].id == "showlink")
spans[i].style.display = 'none';
if (spans[i].id == "hidelink")
spans[i].style.display = 'inline';
}
}

function hideFull(id) {
var post = document.getElementById(id);
var spans = post.getElementsByTagName('span');
for (var i = 0; i &lt; spans.length; i++) {
if (spans[i].id == "fullpost") {
if (fade) {
spans[i].style.background = peekaboo_bgcolor;
Effect.Fade(spans[i]);
} else spans[i].style.display = 'none';
}
if (spans[i].id == "showlink")
spans[i].style.display = 'inline';
if (spans[i].id == "hidelink")
spans[i].style.display = 'none';
}
post.scrollIntoView(true);
}

function checkFull(id) {
var post = document.getElementById(id);
var spans = post.getElementsByTagName('span');
var found = 0;
for (var i = 0; i &lt; spans.length; i++) {
if (spans[i].id == "fullpost") {
spans[i].style.display = 'none';
found = 1;
}
if ((spans[i].id == "showlink") &amp;&amp; (found == 0))
spans[i].style.display = 'none';
}
}
</script>
</b:if>

4.Search code below and add the red code into it.

<div class='post-body' expr:id='"post-" + data:post.id' >
<b:if cond='data:blog.pageType == "item"'>
<style>#fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>#fullpost{display:none;}</style>

<p><data:post.body/></p>
<span id='showlink'>
<a expr:href='data:post.url'>Read More......</a>
</span>
<script type='text/javascript'>
checkFull("post-" + "<data:post.id/>");
</script>
</b:if>

<div style='clear: both;'/> <!-- clear for photos floats -->
</div>

5. Save Your Template.
6. Go to Settings > Format, and search Post Template. Copy and paste the code in the form below to post Template.

Type your summary here
<span id="fullpost">
Type rest of the post here
</span>

7. Save it. EXPANDABLE Post Hack Done

Now time to add your adsense or whatever code to your blog.

Show adsense below Post title on blogger.

<b:if cond='data:blog.pageType == "item"'>
<style>#fullpost{display:inline;}</style>
Add your code here
<p><data:post.body/></p>
<b:else/>

Save it and You're done!

In Labels: on .