Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Recent Comments Widget For Blogger | Blogspot

This Widget will Display Recent comments on Blogger Blog.

Step 1: Go to your Blogger account.

Step 2: Next you have to go Dashboard > Layout > Page Element > Add a Gadget > HTML/JavaScript

Step 3: Copy and paste the code below:





Step 4: In this code Look for the line:





Step 5: And replace the blog address (indicated in color blue below) with your own blog address.

Step 6: Add title and save it.
That's it !


Options:
Number of Comments
This widget is set to display 5 recent comments. If you want to change that number, just look for the number 5 in the code and replace it with the number of comments you want to be displayed. I recommend setting it between 4 and 8.






Number of Characters (Excerpt)
This widget is set to display an excerpt of 100 characters of each comment. If you want to change that number, just look for the number 100 in the code and replace it with the number of characters you want to be displayed. *



*Recommended setting: 50 to 100.

Using SyntaxHighlighter on BLOGGER

xHighlighter is a script which is written in javascript. It can insert colored code snippets on a web page using client-side javascript only. It is ideal tool for users of BLOGGER because we do not have server side resource to parse and highlight the code. And we are lazy, we do not want to write a lot of CSS to just post a code snippet.

Its a little twisting to make it properly.


Step 1: Download SyntaxtHighlighter From Here

Step 2: Extract the rar file. Upload Script and Style folder's file to any host or website which can be linked from your blog.

Step 3: Login to your Blogger account go to Setting> Template > Edit HTML make the following changes. Paste this code after


Step 4: Now you can post code snippet on BLOGGER using either "pre" or "textarea" tag.
Step 5: You can also See tutorial HERE how to use "textarea" or "pre" tag.

Now everything has done !

Show Blog Post Title First on Search Engine | iSEO Blogger

If your Blog title appears first followed by Blog post title in search engine ,then just keep reading the post to solve this problem. Before going to solution, I will explain you how this event can make a bad effect on your Blogs or sites traffic.
Now come to solution. You can do two things:
  • Blog Post Title+Blog Title
  • Only Blog Post Title
Determine which one you will follow. I prefer second one (Only Blog Post Title). But I will show you the both process.

Step 1: Login to Blogger.com

Step 2: From Dashboard select Layout then click on Edit HTML.

Step 3: Then search for this tag <title><data:blog.pageTitle/></title> . Normally it is located in <head> section.
Now if you want to show only Blog Post Title then replace the above tag with following code:

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>


Or If you want to Show Blog Post Title First + then Blog Title, replace the <title><data:blog.pageTitle/></title> tag with the following code.


<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>


I hope this tips will help you to increase traffic in your blogger blog. Post a comment if you have any query.

Related Posts Widget for Blogger / Blogspot | SEO for blogger

The related posts widget will show a new related posts section below your post page.The related posts are fetched from the those posts having the same label as the current post.
1. Sign in to your blogger account.Go to the dash board.
2.From there goto Template &gt; Edit HTML and expand your widget templates(option on the right)
3.Now Search for this Code
</head>
4.Reaplace it with


<!--Related Posts Scripts and Styles Start-->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style>
#related-posts {
float:center;
text-transform:none;
height:100%;
min-height:100%;
padding-top:5px;
padding-left:5px;
}
#related-posts .widget{
padding-left:6px;
margin-bottom:10px;


}
#related-posts .widget h2, #related-posts h2{
font-size: 1.6em;
font-weight: bold;
color: black;
font-family: Georgia, &#8220;Times New Roman&#8221;, Times, serif;
margin-bottom: 0.75em;
margin-top: 0em;
padding-top: 0em;
}
#related-posts a{
color:blue;
}
#related-posts a:hover{
color:blue;
}
#related-posts ul{
list-style-type:none;
margin:0 0 0px 0;
padding:0px;
text-decoration:bold;
font-size:15px;
text-color:#000000
}
#related-posts ul li{
background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEib9ikwlymii9dZNDSnVP2g59qYHhLy7xo4Y74E8OCAtKwFViSmSwtCDb4TExvVAz8cgSY4lCcNal9LsufhalkiopTSMThPxNvJDW6TfNpLQR_cinWEZX9fYz_549IXHgnxA0fxL0lXSGc/s200/greentickbullet.png) no-repeat ;
display:block;
list-style-type:none;
margin-bottom: 13px;
padding-left: 30px;
padding-top:0px;}
</style>
<script type='text/javascript'>
var relatedpoststitle="Related Posts";
</script>
<script src='http://files.bloggerplugins.org/related/related.js' type='text/javascript'/>
</b:if>
<!--Related Posts Scripts and Styles End-->
</head>
5.If you want to change the title of your widget you can edit this line of the above code

var relatedpoststitle="Related Posts";

6.If you want you can edit the blue and black colors present in this code
7.Now find this line of code

<div class='post-footer-line post-footer-line-1'>

Or

<p class='post-footer-line post-footer-line-1'>

8.Now immediately after any of these lines(whichever you could find) place this code snippet


<!-- Related Posts Code Start-->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div id='related-posts'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast != &quot;true&quot;'>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=related_results_labels&amp;max-results=6&quot;' type='text/javascript'/></b:if></b:loop><a href='http://www.bloggerplugins.org/2009/08/related-posts-for-blogger-widget.html' style='display:none'>Related Posts Widget</a>
<script type='text/javascript'>
var currentposturl=&quot;<data:post.url/>&quot;;
var maxresults=5;
removeRelatedDuplicates(); printRelatedLabels();
</script>
</div>
</b:if>
<!-- Related Posts Code End-->

this line determines the number of related posts that are displayed..and by default 6 posts are fetched from each label.

Showing HTML code in blogger | Webpages

Enclose the html code between xmp tags, for example:

OR
<textarea>html code </textarea>