Tuesday, 11 February 2014

How to Create custom popup window in blogspot blogger

We can create two types of popup windows for blogspot blogger.

1. Popup window comes when you click any where on your blog.

Copy and paste following code before </body>

<script type="text/javascript">
document.body.onclick= function(){
window.open('http://google.com', 'poppage', 'toolbars=0, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width=950, height=650, left = 300, top = 50');
}</script>
 
2. Automatic popup after x seconds of page loads
 
 <script language="javascript">

timer=setTimeout("window.open('popup.html','','width=200,height=200')",5000)

</script>

Tuesday, 28 January 2014

Free SEO service for your blog website

I am providing free SEO service to your blog or website
contact me 
Tags : SEO in Hyderabad, free SEO in hyderabad, free SEO in Delhi, Free SEO in kolkatta, Free SEO in Mumbai

Sunday, 12 January 2014

How to Redirect blogspot URL to your custom country URL?


  1. Make sure you're signed in to your blogger's control panel I mean design or dashboard.
  2. Now go to the template option. (Backup your template if necessary)
  3. Click on Edit HTML. Now you can see the code of your template. 
  4. Hit on the template box and Press Ctrl+F to enable search within the code box.
  5. find the <head> of your template and then copy the code below and place it just below the head tag. (Look at the image below)
  6. Save the template. Done! 

<script type='text/javascript'>
var blog = document.location.hostname;
var slug = document.location.pathname;
var ctld = blog.substr(blog.lastIndexOf(&quot;.&quot;));
if (ctld != &quot;.com&quot;) {
var ncr = &quot;http://&quot; + blog.substr(0, blog.indexOf(&quot;.&quot;));
ncr += &quot;.blogspot.com/ncr&quot; + slug;
window.location.replace(ncr);
}
</script>