Sunday, September 22, 2013

How to Give Your Blogger Template Rounded Corners

  • Adding css is really easy with the new Template Designer. Simply click on the design tab in you Blogger admin, next go to the Template Designer, once it loads click on the Advanced tab, and at the bottom of the element list you will find the "Add CSS" option.
    The code below will add roundedness to the main container.
    div.content-inner {
    -moz-border-radius: 10px; /*Firefox*/
    -webkit-border-radius: 10px; /*Safari & Chrome*/
    -khtml-border-radius: 10px;
    border-radius: 10px; /*Standard CSS3 declarations & IE9*/
    }
    The class content-inner is how we target the container div and the three declarations will cover all the major browsers as noted in the css comments.
    This will create symmetric rounded corners, however if you would like to define each corner individually the standard css parameter short hand structure applies and the other possible options are:
    border-radius: TOP-LEFT TOP-RIGHT BOTTOM-RIGHT BOTTOM-LEFT;
    If you would like to know more about available rounded corners and borders, as well as browser compatibility for each case there is a good summary here.
    Following the code above you can now also round the header's corners:
    div.header-outer {
    -moz-border-radius: 10px; /*Firefox*/
    -webkit-border-radius: 10px; /*Safari & Chrome*/
    -khtml-border-radius: 10px;
    border-radius: 10px; /*Standard CSS3 declarations & IE9*/
    }
  • Template with rounded corners

    Before and After Screenshots

     

     

    Template without rounded corners
  • Dealing With Old Browsers

    Now for the tricky part. As mentioned before using CSS3 has the unfortunate downside of not being supported by older browsers (mostly Internet Explorer, all the way up till version 8). Now there are two choices - either provide a fall-back solution or accept the fact that the page will look different in less capable browsers.
    For quite a while now there has been a growing trend to actually do the latter. Just like we provide progressive enhancement for JavaScript functionality, same approach can be taken with CSS. Rather than create a pixel perfect, lowest denominator design across all browsers, we us the optimal way for achieving the desired effect, and allow he design to degrade gracefully to a simpler version.
    Alternatively if you would like to dazzle your old-browser-fashioned audience you can use JavaScript and/or extra markup and images that would work everywhere. You could try using Curvy Corners or Spiffy Corners.

    Random Posts...!!!

  • How to Add Borders to a Blogger Footer Blogspot
    How to Add Borders to a Blogger Footer Blogspot
    04/07/2012 - 0 Comments

    In this Blogger tutorial I going to show you how to add border styling to the new footer. You will learn how…

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

  • 10 Advanced Comment Tricks for Better SEO
    10 Advanced Comment Tricks for Better SEO
    10/10/2013 - 0 Comments

    Many people can come up with some form of advice about SEO, but very few people give you advice about how to…

  • Over-Optimized Sites will be Penalize from Google's Algorithm Update
    Over-Optimized Sites will be Penalize from Google's Algorithm Update
    24/09/2012 - 0 Comments

    During a SXSW panel, Matt Cutts, head of Google's search spam team, announced that Google has been working…

  • How To Replace "Post A Comment" Message In Blogger With Image Or Text
    How To Replace "Post A Comment" Message In Blogger With Image Or Text
    08/10/2013 - 0 Comments

    You can replace post a comment message that appears at your blogger comment box header section with image,…

  • Newbie Bloggers Tips that Must Follow
    Newbie Bloggers Tips that Must Follow
    23/08/2012 - 0 Comments

    Whenever a newbie blogger starts up his own blog, he has to take many decisions and setup his goals. In the…

  • Add The Most Viewed Post Widget In Blogger
    Add The Most Viewed Post Widget In Blogger
    25/06/2012 - 0 Comments

    Adding the most popular posts widget in blogger is as easy as drinking a cup of tea. This widget lets you…

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

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...!!!

  • SEO vs SMO – Overview Tips
    SEO vs SMO – Overview Tips
    24/09/2012 - 48 Comments

    Few years back no one was able to locate your business on Google if the site was not optimized properly. So…

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

  • How to Add Profile Images to Blogger Comments
    How to Add Profile Images to Blogger Comments
    03/07/2012 - 0 Comments

    Today I will show you how easy it is to have Blogger (Blogspot) display profile images in the embedded…

  • How to Remove Image Border in Default Blogger Templates Simple and Awesome Inc
    How to Remove Image Border in Default Blogger Templates Simple and Awesome Inc
    29/06/2012 - 0 Comments

    In this Blogger tutorial I show you how to remove the border around images in Blogger posts (Blogspot posts)…

  • 4 amazing New Improvements to Blogger Template HTML Editor
    4 amazing New Improvements to Blogger Template HTML Editor
    27/09/2013 - 0 Comments

    Google Blogger has just updated the Blogger Template HTML editor, and added four new features to make your…

  • How to Remove or Change the Blog Title Border in Blogger (Blogspot)
    How to Remove or Change the Blog Title Border in Blogger (Blogspot)
    29/06/2012 - 1 Comments

    In this Blogger tutorial I discuss how to change the blog title border color or remove the border in a…

  • SEO 10 worse Techniques of search engine optimization
    SEO 10 worse Techniques of search engine optimization
    22/10/2013 - 0 Comments

    SEO Fail! 10 the most worse Techniques of search engine optimizationYou have heard of the seo technology  the…

  • Newbie Bloggers Tips that Must Follow
    Newbie Bloggers Tips that Must Follow
    23/08/2012 - 0 Comments

    Whenever a newbie blogger starts up his own blog, he has to take many decisions and setup his goals. In the…