Category: Uncategorized

  • 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…

  • Blogger Post Title font and Comment text Font color and fort

    This post give an idea of controlling title post color and comment headlines color and font. The code is: h3.post-title, .comments h4 {  font: $(post.title.font);  margin: .05em 0 0;  COLOR:#000000;} In this css the color and font of post title and comment’s text (like:”NO COMMENTS” and “POST COMMENTS” can be edited. go to template>HTML >ctrl+F>h3.post-title, .comments h4 Here…

  • Blogger Features | All blog features are available | Must Read.

    Many user of blogger forget to know the features available in blogger. Actually they know this but because of managing thousand of task they forget to read the beauty of features available in blogger. We must follow all the feature available at Blogger.com/features. On this link complete guidlines of all the features available in details.Nokia…

  • SEO Tips about Robot.txt | Statement meaning of Robot.txt

    This is a SEO tips. It is a must requirement for an SEO to prevent indexing of search pages. Google webmaster tools do this automatically. If it is not done then use robot.txt to prevent custom search pages on your blog or website. Its code is like this. www.yousite.com/robot.txt/searchresult/disallow. This can be tested in google…

  • How to Implement Google Custom Search | Google Custom Search not working

    For implementing google custom search properly this wild card does a miracle for the search result. If you are unable to understand then post your comments below. It will be answered as soon as possible.  We have to put this code in “what to search box” What to search- https://essssay.blogspot.com/* Here * is doing a…

  • How to Break Header Blogger | How to Split Blog Header

    1.Read carefully to break the header of the blogger. It is very much tricky. /* Header===================================*/#header-wrapper {width:900px;margin:0 auto 0px;height:190px;} #header-inner {width:900px;background-position: center;margin-$startSide: auto;margin-$endSide: auto;} #header {margin: 0px;text-align: left;color:$pagetitlecolor;} 2.Replace above code with below code. /* Header===================================*/ #header-wrapper {width:900px;margin:0 auto 0px;height:190px;} #head-inner {width:600px;background-position: left;margin-left: auto;margin-right: auto;float:left;} #header {margin: 0px;text-align: left;color:#ffcc66;} #r_head{width:300px;float:left;padding-top:10px;} 3. Now again Scroll down…