lagioke.com
No Comment

How to Change Post Title Background Color in Blogger-Blogspot Templates

In this tutorial I'll tell you how to change the post title background color in Blogspot blogs. This option is not present by default in Blogger Template Designer. We can add background color to the post title and also change the color of title itself. As usual, we'll do some editing in the template HTML code and after that, you'll be able to change the post background color from Blogger Template Designer. So, here are the simple steps to follow:

Note: This tutorial has been updated on 06/18/2016.

Steps to Change Post Title Background Color

  1. Open the Template section.
  2. Blogger Updated Dashboard
  3. Click the Edit HTML button.
  4. Blogger Edit HTML Button
  5. You'll see a lot of code on next page. Don't worry. Just expand the <b:skin>...</b:skin> tag by clicking on the arrow on left side.
  6. Now find the following code:
  7. /* Variable definitions
    ====================
    Replace the above code with the following one:
    /* Variable definitions
    ====================

    <Group description="Post Title Background Color" selector="h3.post-title">
    <Variable name="post.title.bg.color" description="Title Background Color" type="color" default="#222222" value="#eeeeee"/>
    </Group>
  8. Now find following line of code:
  9. ]]></b:skin>
    Replace the above code with following one:
    h3.post-title { background:$(post.title.bg.color); padding:10px;}
    ]]></b:skin>
  10. That's it. Coding is finished. Save your template. Now, changing the background color is super easy. See below.

How to Customize the Post Title Background Color from Blogger Template Designer?

  1. Open the Template Designer by clicking on Customize button.
  2. Chose Advanced from left side and then click the first option Post Title Background Color.
  3. Now, simply make changes and make sure to click the Apply to Blog on top right to save your changes. You can also preview the changes live.

I hope this tutorial was helpful to you. There is another tutorial to center the post title. Do check that out as well. Kindly add a link back to this blog. Link code is available at the bottom of this page. Add it anywhere in your blog. For further customization, contact me and get your work done for as low as $11.
No Comment

How to Add Background Color to Sidebar Widget Titles


A reader has requested this tutorial to add background color to sidebar titles. By default, Blogger only allows to change the font & color of sidebar widget titles. So, I'll try to make it as simple as possible & you'll be able to change the background color from the Template Designer.


Note: Tutorial has been updated on 06/18/2016.

Steps!


  1. Open the Template section.
  2. Blogger Updated Dashboard
  3. Click the Edit HTML button.
  4. Blogger Edit HTML Button
  5. A new window will open. You'd have to click the Proceed button to start editing.
  6. Blogger Proceed Button
  7. Find the following code:
       <Group description="Gadgets" selector="h2">
    <Variable name="widget.title.font" description="Title Font" type="font"
    default="normal bold 11px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal bold 11px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
    <Variable name="widget.title.text.color" description="Title Color" type="color" default="#000000" value="#000000"/>
    <Variable name="widget.alternate.text.color" description="Alternate Color" type="color" default="#999999" value="#999999"/>
    </Group>

REPLACE the above code with the following one:
      <Group description="Gadgets" selector="h2">
<Variable name="widget.title.font" description="Title Font" type="font"
default="normal bold 11px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal bold 11px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
<Variable name="widget.title.text.color" description="Title Color" type="color" default="#000000" value="#000000"/>
<Variable name="widget.title.background.color" description="Background Color" type="color" default="transparent" value="transparent"/>
<Variable name="widget.alternate.text.color" description="Alternate Color" type="color" default="#999999" value="#999999"/>
</Group>


  • After that, find the following code:
    div.widget h2.title {
    margin: 0 0 1em 0;

    font: $(widget.title.font);
    color: $(widget.title.text.color);
    }



  • REPLACE the above code with the following code:
    div.widget h2.title {
    margin: 0 0 1em 0;
    font: $(widget.title.font);
    color: $(widget.title.text.color);
    background-color: $(widget.title.background.color);
    }


  • Click Save template and then Close button.



  • Blogger Save Template Close Buttons

    Change Widget Title Background Color in Blogger Template Designer



    After finishing the tutorial, you can easily change the background from Blogger Template Designer. Open 'Template Designer' & select 'Advanced' from the left. Then select 'Gadgets' and you'll see the option to change background of the sidebar widget titles.

    No Comment

    How To Change Post Title Color in Picture Window Blogspot Template

    By default, there is no option to change post title color in Blogger Designer Templates. I've already written a tutorial to do that but users of Picture Window template are having problems. Here is a tutorial to change post title color in Picture Window template.

    Note: If you're using other templates then see this tutorial:
    Blogspot How To: Change Post Title Color in Blogger-Blogspot Template Designer Templates

    Steps to Change Post Title Color in Picture Window Template


    1. Open the Template section.
    2. Blogger Updated Dashboard
    3. Click the Edit HTML button.
    4. Blogger Edit HTML Button
    5. Expand the b:skin tag by clicking the arrow on left side. This will open styling code of your template.
    6. Find the following code:
         <Group description="Post Title" selector="h3.post-title, .comments h4">
      <Variable name="post.title.font" description="Title Font" type="font"
      default="normal normal 18px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 18px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
      </Group>

      Tip: Click anywhere in the coding box and press 'Ctrl + f' keys find this code.

    7. Replace the previous code with the following code:
         <Group description="Post Title" selector="h3.post-title, .comments h4">
      <Variable name="post.title.font" description="Title Font" type="font"
      default="normal normal 18px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 18px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
      <Variable name="post.title.color" description="Color" type="color" default="#FE6602" value="#FE6602"/>
      <Variable name="post.title.hover.color" description="Hover Color" type="color" default="#FFD25F" value="#FFD25F"/>
      </Group>
    8. Now find this code:
      h3.post-title {
      margin: 0;
      font: $(post.title.font);
      }
    9. Replace the above code with this code:
      h3.post-title {
      margin: 0;
      font: $(post.title.font);
      color: $(post.title.color);
      }

      h3.post-title a {
      color: $(post.title.color);
      }

      h3.post-title a:hover {
      color: $(post.title.hover.color);
      }
    10. Now save your template.
    11. Now go to Template Designer then Advanced and edit the Post Title option.


    12. You can simply edit the post color and post hover color from here. Please note that hover color will appear when cursor is brought upon the post title.
    13. If this post was helpful, kindly link back to this blog and express your love in comments!
    No Comment

    How to Change Sidebar Background Color in Blogger Templates

    By default, Blogger does not offer an option to add background color in sidebar [or multiple sidebars]. So, here is a simple tutorial to change the sidebar background color in new Blogger Template Designer templates. After this tutorial, you can easily change the sidebar background color from Template Designer.

    Update: I've updated this tutorial. Now you can change the sidebar background color in all default Blogger templates. Templates with multiple sidebars can also have different colors for each sidebar.

    Lets Do Some Coding First!

    1. Open the Template section.
    2. Blogger Updated Dashboard
    3. Click the Edit HTML button.
    4. Blogger Edit HTML Button
    5. On next page, you'll see a lot of code. Just expand <b:skin>...</b:skin> tag by clicking on the arrow on left side. See following image for help.
    6. .
    7. Find the following code:
      /* Variable definitions
      ====================
    8. REPLACE the above code with the following one:
      /* Variable definitions
      ====================

      <Group description="Right Sidebar Background" selector="body">
      <Variable name="sidebar.right.top.color" description="Right Top Sidebar Background" type="color" default="#00f" value="#0000ff"/>
      <Variable name="sidebar.right.left.color" description="Right Left Sidebar Background" type="color" default="#ff0" value="#ffff00"/>
      <Variable name="sidebar.right.right.color" description="Right Right Sidebar Background" type="color" default="#f0f" value="#ff00ff"/>
      </Group>

      <Group description="Left Sidebar Background" selector="body">
      <Variable name="sidebar.left.top.color" description="Left Top Sidebar Background" type="color" default="#00f" value="#0000ff"/>
      <Variable name="sidebar.left.left.color" description="Left Left Sidebar Background" type="color" default="#ff0" value="#ffff00"/>
      <Variable name="sidebar.left.right.color" description="Left Right Sidebar Background" type="color" default="#f0f" value="#ff00ff"/>
      </Group>

      <Group description="Sidebar Column Background" selector="body">
      <Variable name="sidebar.bgr.color" description="Right Sidebar BG Color" type="color" default="#f00" value="#ff0000"/>
      <Variable name="sidebar.bgl.color" description="Left Sidebar BG Color" type="color" default="#f00" value="#ff0000"/>
      </Group>
    9. After that, find ]]></b:skin> and REPLACE it with the following code:
      #sidebar-right-1 { background: $(sidebar.right.top.color); }
      #sidebar-right-2-1 { background: $(sidebar.right.left.color); }
      #sidebar-right-2-2 { background: $(sidebar.right.right.color); }
      .column-right-inner, column-right-outer { background: $(sidebar.bgr.color); }
      .column-left-inner, column-left-outer { background: $(sidebar.bgl.color); }
      #sidebar-left-1 { background: $(sidebar.left.top.color); }
      #sidebar-left-2-1 { background: $(sidebar.left.left.color); }
      #sidebar-left-2-2 { background: $(sidebar.left.right.color); }
      ]]></b:skin>
    10. Click Save template and then Back button.

    Coding Done! Time to Add Some Colors in Sidebar :)


    We've finished the coding stuff, now simply click the Customize button to open Blogger Template Designer.
    Blogger Customize Button
    Then click the Advanced tab. You'll see 3 new options there. First one is Right Sidebar Background. It has 3 further options.


    Right Top Sidebar Background: This will change the background color of the top section in the right column.
    Right Left Sidebar Background: This will change the background color of the left sidebar in the right column.
    Right Right Sidebar Background: This will change the background color of the right sidebar in the right column.


    Next option is Left Sidebar Background. It also has 3 further options.


    Left Top Sidebar Background: This will change the background color of the top section in the left column.
    Left Left Sidebar Background: This will change the background color of the left sidebar in the left column.
    Left Right Sidebar Background: This will change the background color of the right sidebar in the left column.


    Last option will be Sidebar Column Background. This is the most interesting one because it affects the whole column rather than a single sidebar section. It has 2 further options.


    Right Sidebar BG Color: The color in this option will change the background of whole column on the right side.
    Left Sidebar BG Color: This option will change the background of left side column.

    I hope this tutorial would be helpful for you. Kindly link back to this blog. You can use the link code available at the bottom of this page. This code can be used in sidebar or footer.

    What to Do if Tutorial Does Not Work for Your Blog?


    I write tutorials by testing on all Blogger default templates like Simple, Ethereal & Watermark. Such tutorials might not work on custom or highly customized templates because of incompatible codes. In such case, you can hire me. I'll charge $16 for this tutorial. You'd be able to customize the color by simply going to Blogger Template Designer. You can contact me via email [levisinside0@gmail.com].
    No Comment

    Awesome Blogger Features Coming in 2011

    Blogger is been around for a lot of time now with massive user database. In 2010, a lot of new features have been introduced including the all new Template Designer. So, what is coming in 2011? Have a look at both the current & some awesome upcoming features in this video.



    I'm specially thrilled with the all new Dashboard design, what are you expecting in 2011? Leave me a comment.
    No Comment

    Blogspot How to: Setup Blogger Custom Domain

    How to Setup Blogger Custom Domain


    By default, your blog address is in this format; http://YOURBLOG.blogspot.com/. As you can see, all blogs hosted on Blogger have blogspot.com included in their address. Such an address is difficult to remember and it is not suitable for a professional blog. Traditionally, switching to a personalized domain required research, a web hosting comparison and the purchase of relatively expensive hosting. Fortunately, Blogger has made arrangements for those who are looking for free or cheap hosting while also upgrading to a more personalized domain name. Now, you can simply buy a custom domain directly through Blogger and forget about setting it up. In this tutorial, I'll explain this whole process of searching, buying and setting up a custom domain.

    What is a Custom Domain?


    The domain of my blog is a custom domain; http://www.betatemplates.com/. It is a .com domain. However, when someone creates a blog on Blogger, the address of that blog is in this format; http://example.blogspot.com/. Blogger adds .blogspot to all of its blogs.

    Why Should I Use a Custom Domain?


    The Blogger addresses are very difficult to remember because they contain .blogspot. Switching to a custom domain makes it really easy to create an easy-to-remember address. It also gives a good impression to have a custom domain specially for professional blogs.

    What is the Cost of a Custom Domain?


    Typically, a custom domain costs you around 10$ per year. You have to renew it annually to keep using it. Please note that Blogger provides us free hosting so no need to buy hosting.

    I'm Ready, Lets Buy & Setup a Custom Domain!


    Follow these steps:
    1. Log in to your Blogger account.
    2. Go to 'Settings' then 'Publishing' tab.
    3. Click 'Switch to: Custom Domain' option.
    4. Enter the desired domain name and check its availability.
      If you're looking for a .com domain then it might be difficult to find a great domain because a lot of people chose .com domain names so good luck for that. You can also chose .net, .biz, .info or .org domains but they're not as popular as .com domains.
    5. If that domain is available, Blogger will take you to Google Apps and you'd have to complete 3 steps there. These steps are well explained in the following video:


    How Long Will it Take to Shift to a Custom Domain?


    After setting up a custom domain, it might take up to 3 days to move to the custom domain. So, don't worry about that. Blogger also takes care of the settings behind the scenes.

    What Happens to Existing Address, Visitors & PageRank?


    Here comes the awesome features of Blogger. Your existing visitors will be automatically redirected to the custom domain. The PageRank is also kept intact so don't worry about that as well.
    No Comment

    Creating a Picture Link in Blogger Posts


    By default, when a user clicks a picture in a Blogger post, the picture opens up in a light box. However, you can also create a picture link so that when a user clicks a picture, a new blog or a website will open. For example, the above image is linked to this post itself which is very handy. In this tutorial, I'll explain how you can link a picture to any blog or webpage.

    Default Behavior of an Uploaded Image!


    I've uploaded the following image and did not change anything in it. Click and it will open in a light box:


    Let's link the above image to some blog or webpage.

    Creating an Image Link in the New Post Editor


    First of all, upload an image. I'll upload the above image in my post. After that, switch to the HTML mode of post editor.


    HTML mode shows the HTML code of uploaded image. By default, Compose mode is enabled which is easy but doesn't allow code editing. Anyway, here is the code of my uploaded image:

    <div class="separator" style="clear: both; text-align: center;">
    <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdqsVIPxRShBNUFW3gEJkaUHZ6npU8cKPz62u5-V0nkieN5Aj1VY8tXEq2B6cXbYSLCbUHU0Dxx0MB_5jfR4X8_Votik4_3Mu4b-N9T3wwRKbQlR9n4whACMyVuKOEvN7Hxk1m2cTWwbk/s1600/flower.jpg" imageanchor="1" style="margin-left:1em; margin-right:1em"><img border="0" height="225" width="300" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdqsVIPxRShBNUFW3gEJkaUHZ6npU8cKPz62u5-V0nkieN5Aj1VY8tXEq2B6cXbYSLCbUHU0Dxx0MB_5jfR4X8_Votik4_3Mu4b-N9T3wwRKbQlR9n4whACMyVuKOEvN7Hxk1m2cTWwbk/s400/flower.jpg" /></a></div>

    Note: Don't worry, your code will not be exactly the same because different images have different names, dimensions and alignment.

    Please note that there will be 2 addresses or URLs in the uploaded image. For my image, these URLs are:

    https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdqsVIPxRShBNUFW3gEJkaUHZ6npU8cKPz62u5-V0nkieN5Aj1VY8tXEq2B6cXbYSLCbUHU0Dxx0MB_5jfR4X8_Votik4_3Mu4b-N9T3wwRKbQlR9n4whACMyVuKOEvN7Hxk1m2cTWwbk/s1600/flower.jpg
    &
    https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdqsVIPxRShBNUFW3gEJkaUHZ6npU8cKPz62u5-V0nkieN5Aj1VY8tXEq2B6cXbYSLCbUHU0Dxx0MB_5jfR4X8_Votik4_3Mu4b-N9T3wwRKbQlR9n4whACMyVuKOEvN7Hxk1m2cTWwbk/s400/flower.jpg

    There is only 1 difference in the image URLs which is s1600 and s400. First URL with s1600 is actually the link URL. It is responsible for making this image a link. Second URL with s400 is the source URL. It displays the image.

    As I've told you that the first URL is responsible for making image a link so, we need to change the first URL in our image code. For example, if I want to link the above uploaded image to my blog's homepage which is http://www.betatemplates.com/, I'll only replace the first URL of image with the URL of my blog's homepage. After that, the image code will look something like this:

    <div class="separator" style="clear: both; text-align: center;">
    <a href="http://www.betatemplates.com/" imageanchor="1" style="margin-left:1em; margin-right:1em"><img border="0" height="225" width="300" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdqsVIPxRShBNUFW3gEJkaUHZ6npU8cKPz62u5-V0nkieN5Aj1VY8tXEq2B6cXbYSLCbUHU0Dxx0MB_5jfR4X8_Votik4_3Mu4b-N9T3wwRKbQlR9n4whACMyVuKOEvN7Hxk1m2cTWwbk/s400/flower.jpg" /></a></div>

    As you can see that I've only changed the first URL. Second URL is still an image. Now, if you'll click the following image, it will take you to my homepage.



    Make Image Link Open in a New Window or Tab

    If you're linking your image to some other blog or website then it is a good practice to make it open in a new window or tab. By doing this, visitors will stay on your blog.

    To do this, I'll just add target="_blank" in the image code just after the link address. The code will look like this:

    <div class="separator" style="clear: both; text-align: center;">
    <a href="http://www.betatemplates.com/" target="_blank" imageanchor="1" style="margin-left:1em; margin-right:1em"><img border="0" height="225" width="300" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgdqsVIPxRShBNUFW3gEJkaUHZ6npU8cKPz62u5-V0nkieN5Aj1VY8tXEq2B6cXbYSLCbUHU0Dxx0MB_5jfR4X8_Votik4_3Mu4b-N9T3wwRKbQlR9n4whACMyVuKOEvN7Hxk1m2cTWwbk/s400/flower.jpg" /></a></div>


    And here is the image itself. Just click and my blog homepage will open in a new tab/window.

    No Comment

    How to Backup & Restore Blog Posts Using Blogger Import/Export Feature



    Blogger has an awesome feature to download and save blog posts on your computer. Of course, you can later restore the posts as well. Additionally, you can also move your posts to some other blogging platform using the export feature or to some other Blogger blog. I'd highly recommend to regularly backup your posts. Check out the instructions to see how to do it.

    1- Export or Backup Blog Posts to Your Computer


    1. Chose Settings from the list of options. You can press the drop down arrow button to see more options.
    2. In the Settings section, click Other from the left menu.
    3. You'll see 3 options in Blog Tools. Click Export blog. A window will open where you'd have to click the Download Blog button.
    4. An .XML file will be downloaded to your computer. Make sure to give it a proper name and keep it safe. This file will be used to restore your posts later.

    2- Import or Restore Blog Posts From Your Computer


    1. Chose Settings from the list of options. You can press the drop down arrow button to see more options.
    2. In the Settings section, click Other from the left menu.
    3. You'll see 3 options in Blog Tools. Click Import blog. A window will open where you'd have to browse the file on your computer & click the Import Blog button.
    4. If you're importing posts from some other blog then make sure that Automatically publish all imported posts is not checked.
    5. Now your posts have been imported or restored.
    No Comment

    How to Change Jump Break (Read More) Font, Color & Background Color in Blogger Template Designer



    Blogger officially supports 'after the jump' summaries. You can insert a jump break anywhere in a post to make it short on the blog homepage. The part after the jump break will be visible only when user will click on the Jump Break or Read More link. In this tutorial, we'll add some coding in the template HTML. After that, you'd be able to change the font, color or even the background color of the Jump Break or Read More from the Template Designer.

    Update!: This tutorial has been updated on 06/18/2016.

    What is Jump Break or Read More Link?


    If you don't know anything about Jump Break or Read More links, please read the following article in the official Blogger help.

    Creating 'After the jump' summaries

    Steps


    Follow these simple steps to complete this Blogspot tutorial.
    1. Open the Template section.
    2. Blogger Updated Dashboard
    3. Click the Edit HTML button.
    4. Blogger Edit HTML Button
    5. A new window will open. You'd have to click the Proceed button to start editing.
    6. Blogger Proceed Button
    7. Scroll down a bit and you'll see this code:
      /* Variable definitions
      ====================
      Tip: Windows users can press 'Ctrl + f' to fing the code.
    8. Replace the above code with the following code:
      /* Variable definitions
      ====================

      <Group description="Read More" selector=".jump-link">
      <Variable name="readmore.font" description="Font" type="font"
      default="normal normal 12px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 30px 'Courier New', Courier, FreeMono, monospace"/>
      <Variable name="rm.link.color" description="Link Color" type="color" default="#FFFFFF" value="#666666"/>
      <Variable name="rm.link.hover.color" description="Link Hover Color" type="color" default="#222222" value="#f5f5f5"/>
      <Variable name="rm.bg" description="Background Color" type="color" default="#00000" value="#222222"/>
      </Group>
    9. After that, find ]]></b:skin> and replace it with the following code:
      .jump-link { float: right; font: $(readmore.font); background: $(rm.bg); }
      .jump-link a, .jump-link a:visited { color: $(rm.link.color); }
      .jump-link a:hover { color: $(rm.link.hover.color); }
      ]]></b:skin>
    10. Now, save your template.
    11. After saving template, open the 'Template Designer'.
    12. In 'Template Designer', expand the Advanced tab and you'll see "Read More Link" tab at the top.


    13. You can change the font, color and background color and instantly see the preview. However, changes in hover link color will not be visible in the preview.
    14. After customizing the Jump Break or Read More link, click 'APPLY TO BLOG' link to save your changes.
    No Comment

    Add Unique Meta Description Tags For Each Post in Blogger

    Meta description tags are vital for search engine optimization but adding unique meta tags for each post in Blogger is a tricky thing. I've tried my best to make this process as simple as possible.



    Feel free to watch this video and many more videos on my YouTube channel. Make sure you also subscribe to get latest updates as well.

    http://www.youtube.com/user/BloggerEngineer
    No Comment

    Blogspot How To: Change Post Title Color in Blogger Template Designer Templates



    I have received a lot of comments on a previous post. Readers are asking how to change the post title color in the new Blogger Template Designer templates. Well, here is a very simple step by step tutorial for you.We'll make some changes in the template CSS and then you'll be able to customize post title without any coding stuff.

    Warning: Before making any changes, you must backup your existing layout:

    Blogspot How to: Backup Your Blogger (Blogspot) Template

    Steps to Make Post Title Font Customizable in the Blogger Template Designer Templates.


    1. Open the Template section.
    2. Blogger Updated Dashboard
    3. Click the Edit HTML button.
    4. Blogger Edit HTML Button
    5. You'll see following page with a LOT of code. Don't worry, just expand <b:skin>...</b:skin>.
    6. After expanding the code in previous step, scroll down a bit and you'll see this code:
      /* Variable definitions
      ====================
    7. REPLACE the above code with the following one:
      /* Variable definitions
      ====================

      <Group description="Post Title Color" selector="h3.post-title">
      <Variable name="post.title.link.color" description="Link Color" type="color" default="#ff0000" value="#ff0000"/>
      <Variable name="post.title.hover.color" description="Link Hover Color" type="color" default="#0000ff" value="#00ffff"/>
      <Variable name="post.title.color" description="Color on Post Page" type="color" default="#ff00ff" value="#ff00ff"/>
      </Group>

      Don't save or preview your template yet. Proceed to the next step.
    8. Now find this code:
      ]]></b:skin>
      and REPLACE it with the following one:
      h3.post-title { color:$(post.title.color); }
      h3.post-title a, h3.post-title a:visited { color:$(post.title.link.color); }
      h3.post-title a:hover { color:$(post.title.hover.color); }

      ]]></b:skin>
    9. Click the Preview button. You'll see the post title color as blue. Don't worry you can change it later in Blogger Template Designer. Save your template and click the Close button.

    Hurray, Coding Done! Go & Customize the Post Title in Template Designer!

    Simply click the Customize tab to open the Blogger Template Designer. Select Advanced from the left options. You'll see Post Title Color at the top.:
    There are 3 options in the Post Title Color. Here is their detail: Link Color: This is the color of the post title as a link. Any change to this option will appear in the Template Designer. Link Hover Color: This color will appear when someone brings mouse over the post title. Any change to this option will not be visible in the Template Designer. You'd have to Apply the change, open the blog and bring your mouse over the post title to see the change in color. Color on Post Page: This is the color of the post title on post page when post title is not a link. Again, you'd have to Apply the change and open some post title page to see the affect.

    Help BetaTemplates!


    If this tutorial was helpful then please add a link back to BetaTemplates on your blog. The link code is available at the bottom of this page.
    No Comment

    Video Tutorial: How to Add Facebook Share or Recommend Button in a Blogger Blog

    You can easily add a Facebook share/recommend button in sidebar or below posts. This button lets users share your blog content with their friends on Facebook.





    You can watch more Blogger help videos by going to my YouTube channel:

    http://www.youtube.com/user/BloggerEngineer

    Please subscribe and give your feedback.
    No Comment

    Blogspot How to: Add Adsense Below Post Titles

    How to Add Adsense Below Post Titles in Blogspot Blogs


    Google Adsense is the most popular ad network on the planet. A lot of Blogger users also use it. It's an endless discussion where to place these ads on your blog for maximum exposure. The best ad places are around the header or above the posts or below the post titles. You can easily add adsense in your sidebar as a gadget. But Blogger doesn't allows us to directly place the ads below post titles. The ads below post titles have proven to be one of the most successful money making positions. So, what are you waiting for? Follow this tutorial to add your Adsense ads below post titles.

    Please Note: I'm assuming that you're using the new Adsense interface.


    Steps!

    1. Log in to your Google Adsense account by going to https://www.google.com/adsense/
    2. Go to My ads tab and open Ad units from the left side by expanding Content link.[View Screenshot for Help]
    3. Click new ad unit to create a new ad.[View Screenshot for Help]
    4. Select the size, type and color of your ad. For best results chose either 300x250 medium or 336x250 large rectangle.[View Screenshot for Help]
    5. Give your ad a remember-able name and ad a custom channel to track the ad performance. If you don't know anything about channels then leave that option.
    6. After filling required information, click save and get code button at the bottom of the page.[View Screenshot for Help]
    7. A pop-up window will appear with the ad code. Copy that code.[View Screenshot for Help]
    8. Before pasting the ad code in Blogger, we must make it compatible with Blogger format. So go to http://www.hacktrix.com/adsense-code-converter/ paste the ad code and convert it. You'll find the converted ad code in the bottom box there. Copy the converted ad code.
    9. Open your Blogger account and go to Design then Edit HTML tab and check Expand Widget Templates option.
    10. Press Ctrl + f & find <data:post.body/> you'll see some code like this:
    11.     <div class='post-body entry-content'>
      <data:post.body/>
      <div style='clear: both;'/> <!-- clear for photos floats -->
      </div>
    12. Paste the converted ad code just before the above code. The result would look something like this:
    13. <script type="text/javascript"><!--
      google_ad_client = "ca-pub-xxxxxxxxxxxxxxx";
      /* my ads */
      google_ad_slot = "xxxxxxxxxx";
      google_ad_width = 300;
      google_ad_height = 250;
      //-->
      </script>
      <script type="text/javascript"
      src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
      </script>
      <div class='post-body entry-content'>
      <data:post.body/>
      <div style='clear: both;'/> <!-- clear for photos floats -->
      </div>
    14. Click the PREVIEW button to see the result. Thought you might not see ads below post titles instantly because sometimes Adsense ads take some time to display.
    15. After that save your template by clicking the SAVE TEMPLATE button.

    Tip: Make Ads Appear Only on Post Pages


    Usually, users don't like to see too many ads on a single page. So, we can hide the ads under post titles on main page. These ads will appear only when users will click the post title and go to the post page. To do that follow the steps above but after step 8 you have the converted ad code. Ad some more code in that converted code so that it should look like this:
    <b:if cond='data:blog.pageType == &quot;item&quot;'><script type="text/javascript"><!--
    google_ad_client = "ca-pub-xxxxxxxxxxxxxxx";
    /* my ads */
    google_ad_slot = "xxxxxxxxxx";
    google_ad_width = 300;
    google_ad_height = 250;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script></b:if>

    What I did here is that I've added an if condition to make the ads appear only on post pages. After that, follow the steps above to complete the tutorial.
    No Comment

    Blogspot Video Tutorial: How to Create a Post in Blogger

    Hi guys, this is the 2nd part of my video tutorials series "Blogging for Beginners". In this part, I've explained how you can create a post on Blogger. Please watch this video and share it with your friends.



    You can subscribe to my YouTube channel for further video updates:

    http://www.youtube.com/user/BloggerEngineer
    No Comment

    Blogspot Video Tutorial: How to Create a Blog With Blogger

    Hi guys! I've started a series of video tutorials for beginners. This is the 1st part in which I've explained how you can create your first blog on Blogger. Please watch it and feel free to visit my YouTube channel. You can subscribe to my YouTube channel and post your comments there.



    Please post your comments on video page (right click on video and chose "Watch on YouTube"). Also subscribe to my YouTube channel because I'll be posting more tutorials for beginners. Your feedback will be appreciated, thanks :-)
    © 2015. bloogger - All Rights Reserved
    Template By BLagioke, Proudly powered by Blogger