Month: February 2013

  • How to hide Left Sidebar and css Based Box or widgets to make Home page look different

    Read all carefully and apply with cool mind. Before doing any thing on your HTML code , you must download the template for any accidental loss. Go to template>expand widget> Then Search this code <b:if cond=’data:blog.pageType == “index”‘> or <b:if cond=’data:blog.url == data:blog.homepageUrl’> Sometimes first code in which we see "index" word works for few…

  • How to Insert conditional Element on a Particular page type | VERY IMPORTANT FOR BLOGGER

    Must read the bottom part of this post. These are very important for a blogger.First we have to find this code:  <b:if cond=’data:blog.url == data:blog.homepageUrl’>TEMPLATE>BACK UP TEMPLATE>HTML>CLICK EXPAND WIDGETThen do this.CTRL+F Paste this in find text box of the browser .<b:if cond=’data:blog.url == data:blog.homepageUrl’> The total code is look like this. <b:if cond=’data:blog.url == data:blog.homepageUrl’>PUT THE…

  • How to Disable Selection and Copy Paste Only Blog Post

    This is very important code for disabling selection and copy  of the blog post.Put this code above </head> to deactivate copy paste of blog post only. .post-body {  -webkit-user-select: none;  /* Chrome all / Safari all */  -moz-user-select: none;     /* Firefox all */  -ms-user-select: none;      /* IE 10+ */  -o-user-select: none;  user-select:…