Friday, June 29, 2012

Add CSS Styling to Blockquotes in a Blogger Template

Today I continue the series of Blogger tutorials (Blogspot tutorials) by showing you how to apply CSS styling to blockquotes in a Blogger template.

Today's tutorial on Blogger blockquotes will be useful if you are using a default Blogger template or a third party custom template. It will show you how to change your blockquote area in the following ways:

  • Add a background color to the blockquote
  • Add a border around the background of the blockquote
  • Add or change the color of the blockquote text
  • Add or change padding around the text
  • Add or change the margin
  • Add a background image

Blogger beginners you can relax as I have written this Blogger tutorial with you in mind. I will walk you through the steps of styling the blockquote section and you will see that it is not as daunting as it first appears. This Blogger tutorial assumes no knowledge of CSS styling. I have rated the difficulty level as easy to medium because it does involve making adjustments to your Blogger template.

How to Change the Blockquote Section of a Blogger Template

First of all let's take a look at the CSS Styling for the blockquote section of a default Minima Blogger template.

.post-body blockquote {
line-height:1.3em;
}

.post blockquote {
margin:1em 20px;
}

.post blockquote p {
margin:.75em 0;
}

As you can see the blockquotes area of this Minima template has minimal styling. Apart from line height and margin indentation there has been no additional code added to improve the look of the template.

Minima Blockquotes No Extra CSS Styling
Let's go ahead and give the blockquotes in your Blogger posts some styling. I will use the Minima template to show you but you can do the same for another default template or custom template. As always back up your Blogger template by downloading it to your computer before you begin to make any changes.

  1. CSS Styling to Add a Background Color to Blockquotes
    Adding a background color to the blockquote area can be achieved in 1 of 2 ways.

    1. One way is to enter the hex color directly into the styling as I have done below. This code will add a light grey background to the blockquote area.

      .post-body blockquote {
      line-height:1.3em;
      background-color: #cccccc;
      }
    2. Another way to add a background color using CSS styling for the blockquote area is to make use of the variable names already set up. The border color is light grey #cccccc by default in a Minima template. The advantage of this option is that if you decide to change the border color under Layout > Fonts and Colors the blockquote color will automatically change to the new color too.

      .post-body blockquote {
      line-height:1.3em;
      background-color: $bordercolor;
      }

      If you wanted the background color to be the same as the blog title color rather than the border color you would write this instead

      .post-body blockquote {
      line-height:1.3em;
      background-color: $titlecolor;
      }
  2. CSS Styling to Add a Border Around Blockquotes
    You have your background in place now let's add a narrow border around the background to add some more definition. The following will add a 1px solid border around the outside of your blockquote area in your Blogger posts.

    .post-body blockquote {
    line-height:1.3em;
    background-color: #cccccc;
    border: 1px solid #cc6600;
    }

    or if using variables

    .post-body blockquote {
    line-height:1.3em;
    background-color: $bordercolor;
    border: 1px solid $titlecolor;
    }

    Blockquotes With a Background and Background Border
  3. CSS Styling to Add Padding Around Blockquotes
    Now if we were to leave the styling at this point one of the problems would be that the text would butt up against the background which is not a good look. To create some space between the text and the background edge all the way around we use CSS styling to add some padding like this:

    .post-body blockquote {
    line-height:1.3em;
    background-color: #cccccc;
    border: 1px solid #cc6600;
    padding: 20 px;
    }

    or if using variables

    .post-body blockquote {
    line-height:1.3em;
    background-color: $bordercolor;
    border: 1px solid $titlecolor;
    padding: 20 px;
    }

    Blockquotes With a Background, Background Border and Padding
  4. CSS Styling to Add or Change the Text Color of Blockquotes
    If you want to accent your blockquote area in your posts one effective way to do this is to make the blockquote text color a different color from the text color of your pages. We do this by picking a color and adding the following line to the code:

    .post-body blockquote {
    line-height:1.3em;
    background-color: #cccccc;
    border: 1px solid #cc6600;
    padding: 20 px;
    color: #cc6600
    }

    or if using variables

    .post-body blockquote {
    line-height:1.3em;
    background-color: $bordercolor;
    border: 1px solid $titlecolor;
    padding: 20 px;
    color: $titlecolor;
    }

    Blockquotes With a Background, Background Border, Padding and Change of Text Color

Tips and Troubleshooting
If you want to add further modifications to the blockquotes area of your Blogger template here are several other possibilities.

  1. CSS Styling To Change the Margin of Blockquotes
    You can increase the margin from 1em to 1.5em by changing the margin line to
    margin: 1.5em 20px;
  2. CSS Styling to Add a Background Image to Blockquotes
    You can have your own image as a background in your blockquotes area of your posts by adding this line:

    background: url(http://URL of your image.jpg);

In today's Blogger tutorial (Blogspot tutorial) you have learned how to add CSS styling to the blockquotes area of your Blogger posts.
 I have shown you how to add a background, a background border, change the text color, add padding, change the margin and add a background image to the blockquotes code block.
 If you have a moment please let me know how you got on customizing your own Blogger template.


    Random Posts...!!!

  • Blog SEO tags Nofollow Labels - save your blog from SPAM
    Blog SEO tags Nofollow Labels - save your blog from SPAM
    04/02/2012 - 0 Comments

    Blogger Label Links effect your blog or site Page Rank in a negative way and that's a fact. Why follow…

  • 25% HostGator's Special Discount Coupon - $116 OFF!
    25% HostGator's Special Discount Coupon - $116 OFF!
    31/07/2012 - 1 Comments

    Its often overwhelming whenever we see a really great deal of concession coming from one of internet's…

  • How To Automatically Redirect A Blogger Blog To Another URL
    How To Automatically Redirect A Blogger Blog To Another URL
    16/10/2013 - 0 Comments

    There are a number of reasons you may want to automatically send visitors to your blog to another URL or from…

  • 2012 Best SEO Strategies for Companyes
    2012 Best SEO Strategies for Companyes
    23/09/2012 - 1 Comments

    The search engine optimization world is changing. The SEO landscape of 2012, aka post the Google Panda update…

  • Submit Your Website/Blog to Bing
    Submit Your Website/Blog to Bing
    28/08/2013 - 0 Comments

    Our blog’s 70% of the traffic comes from the Google and rest of all comes from the social networks and blog…

  • Bloggers learn from spammers amazing things
    Bloggers learn from spammers amazing things
    04/06/2012 - 1 Comments

    The terms 'spam' and 'spammers' are usually viewed with apprehension. However, it really is wrong to consider…

  • 5 SEO Tips To Get Massive Traffic
    5 SEO Tips To Get Massive Traffic
    15/09/2012 - 1 Comments

    First of all you should kept mind that blogging is all about posting. As much as you post, you will get your…

  • Best Blog Post Ideas to write about
    Best Blog Post Ideas to write about
    21/08/2012 - 0 Comments

    Blogging serves to be one of the strongest tools in the arsenal of a marketer but the most difficult part of…

If You Enjoyed This Post Please Take 5 Seconds To Share It!

0 comments:

Post a Comment

Please feel free to comment on this topic.

horizontal random post

    Random Posts...!!!

  • Blogger Post Image Borders Change or Remove
    Blogger Post Image Borders Change or Remove
    01/07/2012 - 0 Comments

    Sometimes you may want to remove, delete or change the image border of a custom Blogger template or default…

  • How to Add Internal Links Within Blogger Posts
    How to Add Internal Links Within Blogger Posts
    02/07/2012 - 1 Comments

    Each link identifier needs to be enclosed in inverted commas. Make sure to match up the correct identifier…

  • Google Code Hosting for Free
    Google Code Hosting for Free
    14/09/2012 - 0 Comments

    Hosting on Google Code is for every professional and beginner blogger/webmaster ho needs a suitable hosting…

  • How to Give Your Blogger Template Rounded Corners
    How to Give Your Blogger Template Rounded Corners
    22/09/2013 - 0 Comments

    Adding css is really easy with the new Template Designer. Simply click on the design tab in you Blogger…

  • Best Blog Post Ideas to write about
    Best Blog Post Ideas to write about
    21/08/2012 - 0 Comments

    Blogging serves to be one of the strongest tools in the arsenal of a marketer but the most difficult part of…

  • Blogger Search Description - Meta search description
    Blogger Search Description - Meta search description
    28/03/2012 - 4 Comments

    Finally, Blogger introduces the new "Meta tags description" and "Search description" to individual pages…

  • Using Accessories to Further Enjoy Your Smart Phone
    Using Accessories to Further Enjoy Your Smart Phone
    25/10/2013 - 0 Comments

    What you are visualizing about new launched Samsung Focus smart phone? This phone has been loaded with…

  • Advanced Mashable Style Following Widget For Blogger
    Advanced Mashable Style Following Widget For Blogger
    06/10/2013 - 0 Comments

    Adding eye-catching social sharing widget to your blog/site increase your chances of getting more…