Recent Posts

Sunday 30 August 2015

Auto Read More with Thumbnail

Some template may not suggest auto read more option. By this option the reader of your blog can read your full topic. This script will auto... thumbnail 1 summary
Some template may not suggest auto read more option. By this option the reader of your blog can read your full topic. This script will automatically create summary of your post with a 'Read More' option.

To get this trick just follow the steps-

i) Log in to Blogger account

ii) Go to Template



iii) Backup your template



iv) Click 'Edit HTML'


v) Press Ctrl+F and search '<data:post.body/>'



vi) Replace the code with this-

<b:if cond='data:blog.pageType == "static_page"'>
<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...</a></span>

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

vii) Now press Ctrl+F and find </head> and place the below code immediately before it-



<b:if cond='data:blog.pageType == "static_page"'>
<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...</a></span>

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

viii) You have successfully added 'Auto Read More With Thumbnail'



How to Add Facebook like box

Facebook is a platform where from you can get huge traffic for your blog/website. Facebook visitors will be your regular reader by simple L... thumbnail 1 summary
Facebook is a platform where from you can get huge traffic for your blog/website. Facebook visitors will be your regular reader by simple Like click. That means you can get more facebook fans with this.
To get this, follow simple steps-

Facebook-Like-Box
Facebook Like Box


Step 1- Log in to your blogger account

Step 2- Click Layout

Click-Layout
Click Layout


Step 3- Click add a gadget

Click-Add-A-Gadget
Click Add A Gadget


Step 4- Select HTML/Javascript and paste the following code

Select-HTML-Javascript
Select HTML/Javascript


<iframe src="//www.facebook.com/plugins/likebox.php?href=https://www.facebook.com/pages/Fast-Speed-Torrent/1594246410815014&width=292&height=258&colorscheme=light&show_faces=true&border_color&stream=false&header=false&" style="border:none; overflow:hidden; width:292px; height:258px;" >

Step 5- Click 'Save'

You have successfully added facebook like box to your blog

How to Submit Sitemap to Google/Yahoo/Bing

Sitemap submission is basic thing of blog SEO. Every blogger should submit their sitemaps. By submitting these sitemaps blogger should get ... thumbnail 1 summary
Sitemap submission is basic thing of blog SEO. Every blogger should submit their sitemaps. By submitting these sitemaps blogger should get more traffic to their blogs. As well as they also get listed in the search engines. Some newbie blogger don't know or some blogger don't submit their sitemaps. But my suggestion is submit site to search engines as it is mandatory for all bloggers according to me. Getting listed on the search engines is a good thing for site traffic. Search engine submission is the basic thing of optimizing seo of their blog.

sitemap-submit
sitemap submit


For those who wants to submit their sitemaps to Google/Yahoo or Bing I have created a tutorial 'How to Submit Sitemaps' in easy steps.

In the first step I am telling you how to submit sitemap to Google. In the second Yahoo & Bing comes.

 Step One -1 :- Sitemap Submission to Google


i) Go to Sitemap Submission Page of Google

ii) Now you will see the below image
submit-sitemap-to-google
submit sitemap to google

iii) Now write your blog/website url in the URL section

iv) After that enter the captcha code and click on 'Submit Request'

v) Now You have successfully submitted your sitemap to Google.


Step Two - 2 :-  Submit Site To Yahoo


Before submitting sitemap to yahoo one thing is to remember that Yahoo & Bing are mixed with each other. If you submit your sitemap to Bing then it will automatically submit your sitemap to Yahoo.
Lets see the step details-


ii) You will see a page like below image

bing-website-submission
bing website submission

iii) Now type your website/blog url in the 'Type the URL of your homepage'

iv) After that enter the captcha and click 'Submit'

v) You have successfully submitted your sitemap to Yahoo and Bing



Saturday 29 August 2015

Facebook Like Pop Up Box Widget For Blogger

I am going to make a pop up box of Facebook for your Blogspot blog. Facebook is an another way to increase traffic into your blog. By this ... thumbnail 1 summary
I am going to make a pop up box of Facebook for your Blogspot blog. Facebook is an another way to increase traffic into your blog. By this pop up box visitors can simply click on the like box.

Here is the process. Just simply follow the simple steps-

1. Sign In to Blogger account.

2. Go to the 'Layout'


3. Click On 'Add a Gadget'


4. Click on 'HTML/Javascript'


5. Copy the below code-





<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' type='text/javascript'></script>
<style>
#fbox-background {
display: none;
background: rgba(0,0,0,0.8);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99999;
}

#fbox-close {
width: 100%;
height: 100%;
}

#fbox-display {
background: #eaeaea;
border: 5px solid #828282;
width: 340px;
height: 230px;
position: absolute;
top: 32%;
left: 37%;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

#fbox-button {
float: right;
cursor: pointer;
position: absolute;
right: 0px;
top: 0px;
}

#fbox-button:before {
content: "CLOSE";
padding: 5px 8px;
background: #828282;
color: #eaeaea;
font-weight: bold;
font-size: 10px;
font-family: Tahoma;
}

#fbox-link,#fbox-link a.visited,#fbox-link a,#fbox-link a:hover {
color: #aaaaaa;
font-size: 9px;
text-decoration: none;
text-align: center;
padding: 5px;
}
</style>
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// key and at least value given, set cookie...
if (arguments.length > 1 && String(value) !== "[object Object]") {
options = jQuery.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=',
options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// key and possibly options given, get cookie...
options = value || {};
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#fbox-background').delay(5000).fadeIn('medium');
$('#fbox-button, #fbox-close').click(function(){
$('#fbox-background').stop().fadeOut('medium');
});
}
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
});
</script>
<div id='fbox-background'>
<div id='fbox-close'>
</div>
<div id='fbox-display'>
<div id='fbox-button'>
</div>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?
href=https://www.facebook.com/wbsscmutualtransfer&width=402&height=255&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false'
style='border: none; overflow: hidden; background: #fff; width: 339px; height: 200px;'></iframe>
<div id="fbox-link">Powered by <a style="padding-left: 0px;" href="http://creativebloggingtricks.blogspot.in/" rel="nofollow">CreativeBloggingTricks</a></div>
</div>
</div>


4. Paste the code in it.
Please remove the red colored text with your own facebook page.

5. Click 'Save'