29 January 2012

How-To Add Read More Function On Blogger Without Thumbnail

I had my post about adding Read More function on blogger with thumbnail recently. (You can check it here.) This Read More function is also known as Expandable Post or Display Summary Post hack. This is a display summary post hack without thumbnail. This trick on the blog html is for those who doesn't like posting images in their blog posts.


1. Go to Layout > Edit HTML in your Blogger dashboard and check the "expand widget templates" box.

2. Find the closing </head> tag in your blog template, and paste the following section of code immediately before it:

<!-- JavaScript Posts Summaries -->
<script language='javascript' src='http://www.sigmirror.com/files/16723_kc9lz/jquery-1.2.3.pack.js' type='text/javascript'/>
<script language='javascript' src='http://www.sigmirror.com/files/16722_nbdvm/jquery.extractor.js' type='text/javascript'/>

<script type='text/javascript'>
$(document).ready(function() {

$(&#39;.excerpt&#39;).expander({
slicePoint: 450, // default is 100
expandEffect: &#39;fadeIn&#39;,
expandText: &#39;[...]&#39;, // default is &#39;read more...&#39;
userCollapseText: &#39;[^]&#39; // default is &#39;[collapse expanded text]&#39;
});

});
</script>
<!-- End JavaScript Posts Summaries -->

3. Now, find this section of code (or similar) in your template:

<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>

4. Replace the above section of code in with the following instead:

<b:if cond='data:blog.pageType != "item"'>
<div class='excerpt post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
<a expr:href="data:post.url">Read More..</a>
<b:else/>
<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
</b:if>

5. Preview the template, if you can see the Read More... link then SAVE it.

Drop us a comment! ^^

How-To Add Read More Function On Blogger With Thumbnail

Blog owners want their blog to look good to their visitors and making their blog look clean and presentable is the best thing to do. A lot of bloggers are searching for ways on how to add Read More function to their blog. Meaning , shortening their post on the main page. This will make the main page or homepage more presentable and good to look at. So here is a good trick to the blog html and enable Read More function with thumbnails (if you don't want any thumbnail in your post summary then go here). Some call this the blog post expandable hack.
                                                                                                                        

Adding Automatic Read More Function with Thumbnails on Blogger

1. Now Login to Blogger Go to Layout > Edit HTML in your Blogger dashboard and check the "expand widget templates" box.

2. Find the closing </head> tag in your blog template, and paste the following section of code immediately before it:

<script type='text/javascript'>var thumbnail_mode = "no-float" ;
summary_noimg = 430;
summary_img = 340;
img_thumb_height = 100;
img_thumb_width = 120;
</script>
<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}

function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}

var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}


//]]>
</script>

Note: In above codes you can change the numeric numbers according to your needs.

summary_noimg = 430; is post cut height without image
summary_img = 340; is post cut height with image
img_thumb_height = 100; is thumbnail image height
img_thumb_width = 120; is thumbnail image width

3.  Now find the code <data:post.body/> in your template and replace it with below codes.

<b:if cond='data:blog.pageType == &quot;static_page&quot;'><br/>
<data:post.body/>
<b:else/>

<b:if cond='data:blog.pageType != "item"'>

<div expr:id='"summary" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");
</script> <span class='rmlink' style='float:right;padding-top:20px;'><a expr:href='data:post.url'> read more "<data:post.title/>"</a></span>

</b:if>
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>
</b:if>

4. Preview your template. If it's showing thumbnail with read more function on your blog posts then you can SAVE it.

Note: To show thumbnail, you should have at least one image in your blogger post and please upload the js file to your server and don't forget to change the link with yours in codes to make this hack work.

Drop a comment if you have something to say! ^^

26 January 2012

Google Takes Privacy In Ad Blitz


Google is focusing on the importance of protecting personal information in an unusual marketing campaign for a company that has been blasted for its own online privacy lapses and practices.

The educational ads will start appearing in US newspapers and magazines, including Time and the New Yorker. Google Inc. will also splash its message across billboards within the subways of New York and Washington, as well as various websites.

Google will address some of the basics of online privacy and security in the "Good To Know" ads, which will all include referrals to a website for additional information.

Initial topics to be covered include the steps that can be taken to protect online account passwords and the use of computer coding to locate and identify web surfers. Google will also try to explain why its widely used search engine can produce more helpful results if it knows more about the past interests of the person making the request.

Google's ads are coming out at a time when lawmakers and regulators in the US and Europe are thinking of mandating changes on how much information websites can gather about visitors without giving them more controls to prevent the surveillance.

The total bill for the multi-week blitz will run in the "tens of millions" of dollars.

25 January 2012

How-To Add Meta Tags / Content On Blogger HTML For SEO

Meta tags / content is a very important factor in search engine optimization. This means that this will help search engine crawlers to find your blog. This tags will not be seen in your homepage or your blog because this is placed in the blog HTML and only crawlers and of course you can see it. Some blogger templates have built-in meta tags in their blogger HTML so the only thing to do is to configure the meta tags. But most of the blogger templates don't have meta tags in their blog HTML so it is your initiative to add the meta tags to make your blog more SEO friendly.


Adding Meta Tags / Content On Blogger HTML
  1. Now go to your Dashboard > Design > Edit HTML.
  2. Find the line below in your HTML.
<b:include data='blog' name='all-head-content'/>
     3.  Configure the js below:
<meta content=' DESCRIPTION HERE ' name='description'/>
<meta content=' KEYWORDS HERE ' name='keywords'/>
<meta content='noodp' name='robots'/>
<meta content='INDEX,FOLLOW' name='Robots'/>
<meta content='3 days' name='revisit-after'/>
          DESCRIPTION HERE : Change it with your blog description.
          KEYWORDS HERE : Change it your KEYWORDS, separate keywords with comma.


      4.  Now add the configured script just below the code in step 2.
      5.  SAVE your template.

If you followed the steps above then you successfully added Meta Tags / Content in your blog HTML. Good luck in your SEO adventure. Drop a comment if you have something to say! ^^

23 January 2012

How To Optimize Title Tags For SEO?

Within the Head section of a page the Title is contained between the open and close tags of the <title> element. The Title tag content, unlike other parts of the Head section, is viewable without having to open the source HTML of the page. In most browsers, the page Title will appear in your browser window. You can see it on the top of your browser window.



 Importance Of Title Tags In Search Engine Optimization (SEO):

  • The title tags are very important from the search engine point of view. This is because all major and minor search engines place much weights on these tags (and use these tags to gather information about an website) in comparison to all other aspects.
  • Many major search engines like Google and Yahoo! display title tags of a web page as a heading in their SERPs (Search engine results page) followed by a brief description of the content were the keywords appear.
  • The title tags helps the user in finding out which page he is on. Almost all popular browsers including Microsoft Internet Explorer, display title tags on the top bar as well as the bottom. Firefox 1.0 uses title tags to describe 'tabs'. This makes title tags extremely important from the web usability point of view as well.

 Optimizing Title Tag:

Title tags are most important when it comes to search engine optimization as all major search engines including Google.They place much importance on them. In fact title tags are used by search engines to gather information about a web page. So it is a matter of logic that if the title tag does not match the content of the web page then the search engine may not give the page any ranking at all. As title tags and the web page content are two inseparable things it becomes a necessity to understand the webpage content (or what the webpage is all about) before finalizing on the title tag text. (It should be noted that title tags are specific to a single web page and not to the entire website). So it would be logical to assume that title tags should be written based on the webpage content.

Things to remember to have an optimized title tags:
  • Keep the Title 12 words or less.
  • High-priority phrases should be utilized within the first 70 characters of the Title tag.
  • The maximum usage for any particular word is two.
  • Use as many high-priority keyword phrases as you can given the recommended usage limits.
  • Utilize keyword phrases in the exact way they are searched. Please note that word order is important and you should use stop words if they are commonly included in the query.
  • Make sure that keywords targeted in your page Title accurately reflect the topic of the page.
  • Do not utilize keywords or phrases more than once in page Titles without a specific reason for doing so.
Title tags are definitely one of the "big three" as far as the algorithmic weight given to them by search engines; they are equally as important as your visible text copy and the links pointing to your pages – perhaps even more.

How To Increase Google Ads CTR (Click-Through Rate)?

CTR stands for Click-Through Rate. It is the ratio of the clicks to the ad impression which means that if you have 3% CTR, then you got 3 clicks for ever 100 times the ad is displayed on your site (ad impressions). Some bloggers say that having 3% CTR is a good figure for a blog. Having a higher CTR means more and more clicks which give you more earnings. 
CTR is affected by many factors. Ad placement, ad format, source of visitors, visitor’s profile and blog design to name a few. Let’s tackle them one by one.



A.) Ad Placement. Our target here is to place the ads so that your visitors will be able to read it and click on it when interested, NOT to place the ads where they will get clicked accidentally.

Above The Fold. An ad placed above the fold gets higher CTR than an ad placed below. The reason is very obvious. People can’t click an ad that they don’t see, right? Putting your ad above the fold gives the ad more eyeballs and more chances of getting clicked.

At The Right Sidebar Beside The Blog Post. While reading a blog post, visitors might get interested on the ads on the sidebar related to the blog post. A lost visitor but a blog income in return.

After The Blog Post. Putting an ad after the blog post is a good idea. After reading the blog post, the visitors have an option to further read the comments or to click an ad related to your blog post.

Near Search Boxes. Putting link units near search boxes will give the visitor an option to type keywords on the search box on what he’s looking for or to click a link on the link unit if he found his keywords listed on it.

B.) Ad Formats. An ad that doesn’t look like an ad gets higher CTR. So blending your ads to your blog will bring you more clicks. Use the same color schemes of the blog in your ads to blend well and don’t use borders. The best performing ad sizes are the skyscraper (160x600) and the big rectangle (336×280), so use them well.

C.) Source Of Visitors. Visitors coming from the search engines are the people who will probably Click Ads. It is because they are searching for something, if they find what they are looking for on the ads, they will click it. Regular visitors don’t click ads, and don’t even think of encouraging them to click it. That’s illegal on Google Adsense. So, to increase your CTR, learn SEO to get visitors from search engines.

D.) Visitors’ Profile. Adsense-ignorant visitors will probably click ads. People who know about Adsense will not click it. Blog post talking about making money online thru Adsense and optimizing CTR like this one will not get clicks. Target Adsense-ignorant readers on your blog posts. Talk about topic totally not related to Adsense and see your CTR increase.

E.) Blog Design. A 2-column simple blog design has a higher CTR than a 3-column blog. Minimize the number of outgoing links. Too much links on the blog page gives too much competition to the ads. Having less links gives a higher CTR for the blog. Remove the unnecessary widgets and buttons that slow down the blog and gives competition to the ads. You don’t need those widgets.



That would be my suggestions to increase your Google Adsense Click-Through Rate (CTR). Drop a comment if you have something to add. ^^

22 January 2012

How To Create Back Links To Your Blog?

Back links are one of the strongest factors that push your blog to the top of the SERP (Search Engine Results Page). Here are more suggestions on how to create/get more back links or more specifically one way links.

“Link exchanging is a good practice in blogging since you’ll be able to increase the incoming links to your blog, thereby increasing your blog’s Pagerank and your ranking on search engine for your target keywords. However, search engines are improving their search algorithm too, especially Google, that link exchanges are given less credit nowadays. So using other means of creating or getting back links is necessary. 


Aside from the link exchanging thing, it would be very helpful if you’ll give one – way links to your blog or to a blog post you are optimizing. One-way link is a link from a site that you did not link back. So, where can we get those one-way links? Here is a list of activities that can generate those one way links.

Creating Back Links To Your Blog To Increase Blog Pagerank

a.)Forum Signatures. Are you an active forum member? Take advantage of that signature which is displayed at the bottom of every post you made. Usually, forum members use their signatures for their affiliate links to get referrals. Well, you use this signature to link back to your blog or a certain blog post you are optimizing. Imagine if you already have more than a hundred posts in a single forum. A simple change to your forum signature equals more than a hundred one way link to your blog or a blog post you are optimizing.

b.) Three-way Link Exchanges. This one is simple. You link to my blog. I link to your blog using my other blog. Those are all one-way links.

c.) Link Baiting. This is the best way to get one-way link, but the hardest to get. You post something interesting, people like it and link to it.

d.) Sharing Blog Theme. If you know how to create a blog theme, you should use that skill to create more back links to your site. You can put a link to your blog in the HTML of the theme and if people found the theme you made and use it in their blog then you create a one – way links to your blog. Imagine a thousand of bloggers uses your theme that means a thousand of easy one – way links to your blog.

e.) Links From Your Other Blogs. If you have several blog’s that has a good pageranks, use it for link loving goodness. Sometimes, putting a sitewide link to them really helps if you want to get a high ranking for a certain keyword, especially if your targeting seasonal keywords such as the Pacquiao-Marquez fight or any incoming event.

f.) Directory Submissions. Submit your blogs to all the free search engine friendly directories out there. If you’re clueless where to get them, here’s something to start with. Just select the free directories, not the paid one or the ones asking for reciprocal links. There are plenty of them that could keep you busy every day.

A thing to remember, SEO includes a lot of waiting. You don’t do that overnight and expect changes the next day. Do it tonight, fand expect improvement after 3 to 6 months if your blog is new. You really need patience in blogging. And you need a lot of it to succeed in this little blogging sideline. Just make sure you target the right keywords so that if you hit the first page, the traffic pours and your earnings increase.

Drop a comment if you have something to add or reaction to back link building. ^^

19 January 2012

How-To Add Tag Cloud Widget On Blogger

This widget is nice for blogspot bloggers who wants to have a tag cloud for categories or labels. This is a simple tag cloud widget if you want to change your old categories/labels list in your blog. This is easy to implement on the sidebar of your blog and will blend to your template directly.


Adding Tag Cloud Widget On Blogger:

     1.  Back up your template first by downloading it.
     2.  Make sure you have Labels Widget installed in your blog.
     3.  Go to your Dashboard > Design > Edit HTML.
     4.  Don't click on Expand Widget Template.
     5.  Find the code below:
<b:widget id='Label1' locked='false' title='Tags' type='Label'/>
        - Just Ctrl+F then type in the box below the browser type='Label'.

     6.  Change the whole line of the code with type='Label' with the code below.
/* Distributed by Jai Cuizon at iBlogTools.blogspot.com */ <b:widget id='Label1' locked='false' title='Tags' type='Label'> <b:includable id='main'> <b:if cond='data:title'> <h2><data:title/></h2> </b:if> <div class='widget-content' style='text-align: justify;'> <script type='text/javascript'> /* Simple Blogger Tag Cloud Widget by Raymond May Jr. http://www.compender.com Released to the Public Domain */ //Settings / Variables var max = 150; //max css size (in percent) var min = 70; //min css size (in percent) var showCount = false; // show counts? true for yes, false for no var minCount = 1; // what is the minimum count for a tag to be shown? 1 for all //Begin code: var range = max - min; //Build label Array var labels = new Array(); <b:loop values='data:labels' var='label'> labels.push(&quot;<data:label.name/>&quot;); </b:loop> //URLs var urls = new Array(); <b:loop values='data:labels' var='label'> urls.push(&quot;<data:label.url/>&quot;); </b:loop> //Counts var counts = new Array(); <b:loop values='data:labels' var='label'> counts.push(&quot;<data:label.count/>&quot;); </b:loop> //Number sort funtion (high to low) function sortNumber(a, b) { return b - a; } //Make an independant copy of counts for sorting var sorted = counts.slice(); //Find the largest tag count var most = sorted.sort(sortNumber)[0]; //Begin HTML output for (x in labels) { if(x != &quot;peek&quot; &amp;&amp; x != &quot;forEach&quot; &amp;&amp; counts[x] >= minCount) { //Calculate textSize var textSize = min + Math.floor((counts[x]/most) * range); //Show counts? if(showCount) { var count = &quot;(&quot; + counts[x] + &quot;)&quot;; }else{ var count = &quot;&quot;; } //Output document.write(&quot;<span style='font-size:&quot; + textSize + &quot;%'><a href='&quot; + urls[x] + &quot;' style='text-decoration:none;'>&quot; + labels[x] + count + &quot;</a></span> &quot; ); } } </script> <br/> <span style="font-size:80%;float:right;">Powered by <a href="http://www.iBlogTools.blogspot.com">Blogger Widgets</a> </span> </div> </b:includable> </b:widget>
     7.  Preview it, see if you can see your new tag cloud widget.
     8. Then, SAVE it.

Just make sure you follow the steps above to implement the tag cloud widget completely without any problems. Drop a comment if you have difficulties implementing the tag cloud widget. ^^

17 January 2012

How-To Add Random Posts Widget On Blogger


Random posts widget is another great widget and very important in a blog also if you want to show your readers other stuffs you have in your blog. This widget I have here display some of your posts randomly. Same as the related posts widget but different because this only shows your other posts either related or not. Below is an image of this widget.



1.  Go to your Dashboard > Design.
2.  Then click on Add a Gadget and select HTML/JavaScript.
3.  Copy the code below and paste on the  HTML/JavaScript gadget.

<script type="text/javascript">
var randarray = new Array();var l=0;var flag;
var numofpost=6;function randomposts(json){
var total = parseInt(json.feed.openSearch$totalResults.$t,10);
for(i=0;i < numofpost;){flag=0;randarray.length=numofpost;l=Math.floor(Math.random()*total);for(j in randarray){if(l==randarray[j]){ flag=1;}}
if(flag==0&&l!=0){randarray[i++]=l;}}document.write('<ul>');
for(n in randarray){ var p=randarray[n];var entry=json.feed.entry[p-1];
for(k=0; k < entry.link.length; k++){if(entry.link[k].rel=='alternate'){var item = "<li>" + "<a href=" + entry.link[k].href + ">" + entry.title.$t + "</a> </li>";
document.write(item);}}
}document.write('</ul>');}
</script>
<script src="/feeds/posts/default?alt=json-in-script&start-index=1&max-results=1000&callback=randomposts" type="text/javascript"></script>
4.  Preview your blog.
5.  If you can see the gadget running perfectly then SAVE it.


Configuration:

 numofpost=6 - the number of posts to be shown in the widget. You can change the numerical value as you want.


Just follow the steps and you will have it in your blog in no time. Leave a comment you have something to say. ^^

16 January 2012

How-To Add A 3D Spherical Animated Tag Cloud For Blogger


Tag Cloud, Categories, Labels or whatever they call call it. These widgets are very important in a blog. This helps a user to navigate further your blog easily. The usual widget shows the list of the labels you have in your post which is kinda normal to a blog. Some bloggers are experimental in nature and want some new stuff running in their blogs and this widget fit them most.

This widget is a 3D Spherical Animated Tag Cloud Widget. As the name implies, this animated so the labels or categories that it shows are moving. Or not really, if a visitor hover his mouse to the widget then the labels will start rotating in a spherical pattern. Nice huh! Below is an image of the widget I have in my blog.

Add 3D Spherical Animated Tag Cloud On Blogger:

1.  Go to your Dashboard > Design > Edit HTML.
2.  Find the code below:

<b:section class='sidebar' id='sidebar' preferred='yes'>
3.  Copy the code below and paste it direct under the code in step 2: 
<b:widget id='Label99'locked='false' title='Tag Cloud' type='Label'> <b:includable id='main'> <b:if cond='data:title'> <h2><data:title/></h2> </b:if> <div class='widget-content'> <script src='http://sites.google.com/site/bloggerustemplatus/code/swfobject.js' type='text/javascript'/> <div id='flashcontent'>Blogumulus</div> <script type='text/javascript'> var so = new SWFObject(&quot;http://sites.google.com/site/bloggerustemplatus/code/tagcloud.swf&quot;, &quot;tagcloud&quot;, &quot;160&quot;, &quot;200&quot;, &quot;7&quot;, &quot;#ffffff&quot;); // uncomment next line to enable transparency //so.addParam(&quot;wmode&quot;, &quot;transparent&quot;); so.addVariable(&quot;tcolor&quot;, &quot;0x800060&quot;); so.addVariable(&quot;mode&quot;, &quot;tags&quot;); so.addVariable(&quot;distr&quot;, &quot;true&quot;); so.addVariable(&quot;tspeed&quot;, &quot;100&quot;); so.addVariable(&quot;tagcloud&quot;, &quot;<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>&quot;); so.addParam(&quot;allowScriptAccess&quot;, &quot;always&quot;); so.write(&quot;flashcontent&quot;); </script> <b:include name='quickedit'/> </div> </b:includable> </b:widget>

4.  Preview your blog.
5.  If you see the widget running perfectly then SAVE it.

Configuration:

Find the numbers below and change it as you needed.

Text color: 800060 (purple in as default in the code above)
Height: 200 px
Width: 160 px
Font size: 12

Hope you have the widget running perfectly in your blog. Leave a comment if there's something wrong. ^^

08 January 2012

The Periodic Table For SEO Ranking Factors

Majority of bloggers are no strangers in the concept of search engine ranking factors. In this community, everyone would be pleased if there's a new factor discovered that may provide a great potential  ranking boost. Of course, everyone in the blogging community would love that. In this post, you can see a Periodic Table Of SEO Ranking Factors. This is a table made to better understand or help the blogging community in their adventure for Search Engine Optimization.


Full  Periodic Table
Want to rank well? 
  • It is still very important to have quality content ( Cq ). It's the reason why it's the first factor listed on the chart.
  • It is still very important to have conducted proper keyword research ( Cr ). A topic that sometimes feels forgotten in the quest for more exotic ranking factors.
  • The locality of a searcher ( Pl ) -- has grown into a major ranking factor that can seem all-but-forgotten by some SEOs who assume that "normal" results still exist and can somehow be found by running proxies or using the pws=0 trick. Google personalizes results down to the metropolitan level in the US and elsewhere. Good luck "adjusting" for that to get your "normal" results.


A Closer Look

This periodic table shows us on  where to focus to succeed in SEO. It is very important to see the big stuff that matters most in SEO and do your best in implementing it in your site or blog. Try undertanding the periodic table and you will see that it is a very good guide in SEO in just one table.

Drop a comment if you have something to say! ^^

05 January 2012

Simple Search Engine Optimized (SEO) Blogger Theme/Template

The i - Blog Tools Search Engine Friendly blogger theme/template is a sample of a search engine optimized theme/template. I implemented all my suggestions in optimizing a theme/template in search engines in this simple theme/template. You can check my post in optimizing a theme/template HERE. The installation guide is also in the file to be downloaded if you want to try this theme/template. Or you can browse below this post, I have some guides in installing this theme/template in your blog.

i - Blog Tools Search Engine Friendly Blogger Theme/Template


Features Of i - Blog Tools Blogger Template

  • 3 Column Blogger Template
  • Right Sidebar
  • Search Engine Friendly
  • Meta Tag ready (easy edited)
  • Adsense ready (easy edited)
  • Thumbnail Recent Post installed (easy edited)
  • Different admin comment
  • Compatible With Mozilla, Flock, Chrome, Opera and IE

Installation

Go To Blogger Design > Edit HTML > Click "Browse" > put "SimpleSEO.xml" file from your computer > Click "Upload" > Save Template.

Edit Meta Tag

Click on the "Expand Widget Template" first then find below codes and change the red color to match yours:
<head>
<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/> | Enter your blog topic here</title>
<b:else/>
<title><data:blog.pageName/> | Enter your blog name here</title>
</b:if>
<meta content='Enter your blog description' name='description'/>
<meta content='Enter your blog keywords' name='keywords'/>
<meta content='noodp' name='robots'/>
<meta content='INDEX,FOLLOW' name='Robots'/>
<meta content='3 days' name='revisit-after'/>
Edit Adsense Code
Header adsense:
Find this code: <!--YOUR ADSENSE CODE -->
Remove the code between <!--YOUR ADSENSE CODE --> and <!--END ADSENSE CODE --> with your adsense code.
<!--YOUR ADSENSE CODE -->
<script type='text/javascript'><!--
google_ad_client = "pub-1123194319111395";
google_ad_host = "pub-1556223355139109";
/* Simple seo head 468x60 */
google_ad_slot = "6835305692";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script src='http://pagead2.googlesyndication.com/pagead/show_ads.js' type='text/javascript'>
</script>
<!--END ADSENSE CODE -->
 Hope you enjoy this simple SEO theme/template. Drop a comment if you have something in mind. ^^

04 January 2012

How To Select A Search Engine Optimized (SEO) Theme/Template?

The adventure of Search Engine Optimization is very hard than anyone can imagine. Search Engines does not have a constant result for every searched item. This depends on a lot of factors that makes bloggers hard to be on top of every search. Backlink is said to be the number one factor for a blog to be in the first page results.



Have you think about this? Your theme or template has something to do in optimizing your blog on search engines. Yes, that’s right! New bloggers don’t have the knowledge about Search Engine Optimization as a whole. That’s why most of them end up with a messed and unknown blog. So better have a Search Engine Optimized theme/template now.

Select A Search Engine Optimized (SEO) Theme/Template with: 

  1. Optimized Title Tag - This means that post title appears first before the blog title. You will notice if you will do a search in Google, for example, some of the permalink of the search items shows the blog title first then the post title. Well, to have an optimized theme, you need to have your title tag optimized also. This can be fixed by a plugin but remember that plugin can slow down your blog. So better have it in your theme.
  1. The Content Loads First Before The Sidebar – Every blogger should know this, crawlers read the part of the blog that loads first. So if the sidebar loads first then the crawlers won’t read your targeted keywords first since you have those in your content or blog posts.
  1. Extensive Use Of Header Tags – Blog title, post title and other sub-titles should have h1, h2 and h3 tags respectively. Better use this in your blog since search engines put weights on these tags.
  1. A Footer – The footer of the blog gives you a sitewide link to a post you want to optimize. Others say that footer links are not weighted heavily by search engines but they got it wrong. A lot SEO contests results show that footer links help a lot. Readers may not notice this links but search engines still count them as links.

  1. Only 1 Credit Link For The Theme Maker – We know that we have to give credits to the theme maker but too much is not good for the blog. One sitewide link is enough for the theme maker. We don’t want to waste too much Google juice for the theme. Links are important that’s why use them wisely.


That would be my suggestions in choosing the right theme/template for your blog. Feel free to add some if you have something in your mind. ^^


 

02 January 2012


Contact Me


Name *



Email *



Subject *



Message *



Powered byEMF Web Forms Builder
Report Abuse