Home > Tutorial > Rounded Corners for Blogger Widgets
Rounded Corners for Blogger Widgets
Posted on Sunday, June 19, 2011 by android apps market for tablests
Some time ago, blog reader dirtycowgirl asked if there's a way to give rounded corners for blogger post boxes. Last week, DCG asked if it is possible to extend the tutorial to cover the entire blog. So here it is folks, a tutorial on how you can give rounded corners to your widget boxes. Refer to the other tutorial on how you can give rounded corners to post boxes. BTW, this tweak works best for designer templates (built-in Blogger templates). Even though I put on a lot of efforts to make the tutorials in this blog as generic as possible, sometimes it is just impossible to cover all grounds. In case this tweak doesn't work for you, feel free to leave a comment and I will advise you accordingly. Oh, it won't work in most IEs. I'm not sure about IE9 though, feel free to give it a try.
That will be all. And, the Transformers post got delayed due to unforeseen circumstances. Hopefully there will be one sometime in next week, if I'm still alive. Cheers and God bless.
Step 1:
I decided to divide and conquer this time. For the first step, we're gonna apply the tweak to all widget boxes except for Pages/Linklist gadget, because they tend to vary a lot across different templates. Here's what you should do:
If you're using the old Blogger interface: Go to Dashboard - Design - Template Designer - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.
If you're using the new Blogger interface: Go to Dashboard ('House' symbol) - Template - Customize - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.
I decided to divide and conquer this time. For the first step, we're gonna apply the tweak to all widget boxes except for Pages/Linklist gadget, because they tend to vary a lot across different templates. Here's what you should do:
If you're using the old Blogger interface: Go to Dashboard - Design - Template Designer - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.
If you're using the new Blogger interface: Go to Dashboard ('House' symbol) - Template - Customize - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.
.widget, .blog-pager{
-moz-border-radius: 10px !important;
-webkit-border-radius: 10px !important;
-goog-ms-border-radius: 10px !important;
border-radius: 10px !important;
}At this point most (almost all) of your widget boxes should have been tweaked.Step 2:
And now, for Pages/Linklist gadget. I tried my best to generalize this one, but I can't promise if it will cover all templates. Just give it a try, and if it doesn't work, leave a comment. If you've applied my Pages Gadget No-Stretch tweak, please reverse/undo the tweak before attempting this step.
If you're using the old Blogger interface: Go to Dashboard - Design - Edit HTML - Back Up (Download Full Template) -
If you're using the new Blogger interface: Go to Dashboard - Template - Backup/Restore - Download Full Template - Close - Edit HTML - Proceed -
Find for /* Headings ----------------------------------------------- */ - Paste the following code directly above it (see the screenshot):
And now, for Pages/Linklist gadget. I tried my best to generalize this one, but I can't promise if it will cover all templates. Just give it a try, and if it doesn't work, leave a comment. If you've applied my Pages Gadget No-Stretch tweak, please reverse/undo the tweak before attempting this step.
If you're using the old Blogger interface: Go to Dashboard - Design - Edit HTML - Back Up (Download Full Template) -
If you're using the new Blogger interface: Go to Dashboard - Template - Backup/Restore - Download Full Template - Close - Edit HTML - Proceed -
Find for /* Headings ----------------------------------------------- */ - Paste the following code directly above it (see the screenshot):
/*--SS Pages Gadget Rounded Corners Starts--*/If you get "Invalid variable declaration" error, use this one instead:
.tabs-outer {
background: transparent !important;
}
.cap-top, .cap-bottom{
border: none !important;
}
#crosscol{
background: transparent !important;
border: none !important;
}
.tabs-inner .widget ul {
background: transparent !important;
border: none !important;
}
.tabs-inner .widget li:first-child a{
border-left: 1px solid $(tabs.border.color) !important;
}
.tabs-inner .widget li a{
border: none !important;
border-right: 1px solid $(tabs.border.color) !important;
border-top: 1px solid $(tabs.border.color) !important;
border-bottom: 1px solid $(tabs.border.color) !important;
background: $(tabs.background.color) $(tabs.background.gradient);
}
.tabs .widget ul li:first-child a{
-moz-border-top-left-radius: 10px !important;
-webkit-border-top-left-radius: 10px !important;
-goog-ms-border-top-left-radius: 10px !important;
border-top-left-radius: 10px !important;
-moz-border-bottom-left-radius: 10px !important;
-webkit-border-bottom-left-radius: 10px !important;
-goog-ms-border-bottom-left-radius: 10px !important;
border-bottom-left-radius: 10px !important;
}
.tabs .widget ul li:last-child a{
-moz-border-top-right-radius: 10px !important;
-webkit-border-top-right-radius: 10px !important;
-goog-ms-border-top-right-radius: 10px !important;
border-top-right-radius: 10px !important;
-moz-border-bottom-right-radius: 10px !important;
-webkit-border-bottom-right-radius: 10px !important;
-goog-ms-border-bottom-right-radius: 10px !important;
border-bottom-right-radius: 10px !important;
}
/*--SS Pages Gadget Rounded Corners Starts Ends--*/
/*--SS Pages Gadget Rounded Corners Starts--*/The code in place (Ending portion)
.tabs-outer {
background: transparent !important;
}
.cap-top, .cap-bottom{
border: none !important;
}
#crosscol{
background: transparent !important;
border: none !important;
}
.tabs-inner .widget ul {
background: transparent !important;
border: none !important;
}
.tabs-inner .widget li a{
border: none !important;
background: $(tabs.background.color) $(tabs.background.gradient);
}
.tabs .widget ul li:first-child a{
-moz-border-top-left-radius: 10px !important;
-webkit-border-top-left-radius: 10px !important;
-goog-ms-border-top-left-radius: 10px !important;
border-top-left-radius: 10px !important;
-moz-border-bottom-left-radius: 10px !important;
-webkit-border-bottom-left-radius: 10px !important;
-goog-ms-border-bottom-left-radius: 10px !important;
border-bottom-left-radius: 10px !important;
}
.tabs .widget ul li:last-child a{
-moz-border-top-right-radius: 10px !important;
-webkit-border-top-right-radius: 10px !important;
-goog-ms-border-top-right-radius: 10px !important;
border-top-right-radius: 10px !important;
-moz-border-bottom-right-radius: 10px !important;
-webkit-border-bottom-right-radius: 10px !important;
-goog-ms-border-bottom-right-radius: 10px !important;
border-bottom-right-radius: 10px !important;
}
/*--SS Pages Gadget Rounded Corners Starts Ends--*/
That will be all. And, the Transformers post got delayed due to unforeseen circumstances. Hopefully there will be one sometime in next week, if I'm still alive. Cheers and God bless.
Category Article Tutorial
Powered by Blogger.
Blog Archive
-
▼
2011
(4034)
-
▼
June
(142)
- Music Player for Android withSong Identification
- [Google + Project] Google’sNew Weapon AgainstFacebook
- [Google + Project] Google’sNew Weapon AgainstFacebook
- Search and Find Games forLinux Online
- Send Yourself Reminders onTwitter, Email and GTalk
- Riches to Rags: MySpace SoldFor $30 Million
- June Reflections
- Boy At The End of the World (MG)
- 10 Webmasters Mistakesthat Violate Google AdsenseTOS
- What affects the Adsenseearnings
- To Dream in The City of Sorrows
- The Unpleasantness at the Bellona Club
- The Classics Circuit: John Steinbeck Tour In Augus...
- Joining the Agatha Christie Reading Challenge
- Sunday Salon: Week in Review #26
- 5 Great iPhone Apps for Women
- Free Online Tool to Change IP Address While Surfing
- 8 Productivity Tips for Professional Blogging
- 5 Chrome Omnibar Tips for Better Productivity
- Microsoft vs Apple: History of the Computer Giants!
- Share Flickr Photos on Twitter, Facebook and Blogg...
- Wikipedia to Add “Love” Button for Contributors
- Wikipedia to Add “Love” Button for Contributors
- Create and Share Notes via Twitter or QR Code
- Show Date and Timestamp for Each Blogger Post
- Library Loot: Fifth Trip in June
- Nemesis
- Small Acts of Amazing Courage (MG/YA)
- William's Midsummer Dreams (MG)
- Transformers Dark of the Moon Advanced Screening
- Transformers Dark of the Moon: Sentinel Prime and ...
- Miles from Ordinary (YA)
- Spring Reading Thing Completed
- Google Shows OrganizedList of Related SearchResults
- Windows Media Player11 Codecs
- Windows 8 Beta –Rumors And ReleaseDate
- Access all your Files on DropBoxand Google using O...
- Access all your Files on DropBoxand Google using O...
- Front and Center (YA)
- Once Upon a Time Challenge Completed
- The Rumpelstiltskin Problem (MG)
- The Rise and Fall of Mount Majestic (MG)
- Rounded Corners for Blogger Widgets
- Sunday Salon: Week In Review #25
- How to Update iPhone Firmware
- How to transfer photos from iPhone to computer (PC...
- iPad 1 VS iPad 2
- No title
- Free Online Tool to Highlight Text on Webpage and ...
- SiS Readathon Report #2
- SiS Readathon Update #11
- SiS Readathon Update #10 and Mini-Challenge
- Library Loot: Fourth Trip in June
- SiS Readathon Update #7 and Mini Challenge
- SiS Readathon Update #6
- SiS Readathon: Report #1
- SiS Readathon Update #5 and Mini Challenge
- SiS Readathon Update #4 and Mini Challenge
- SiS Readathon Update #3 (No mini-challenge)
- Sis Readathon Update #2 and Mini Challenge
- SiS Readathon Update #1 and Mini-Challenge
- Spring Into Summer Readathon Begins Today!
- Free VPN Services – Trusted Methods to Achieve Online
- 5 Funniest Android Apps to Kill Time
- Install Vista Themes Without Patching the System!
- Download Latest themes for Your Windows Seven
- The most awaited OS – Windows 8
- Enable Google’s Search by Image Feature
- Free Online Tool to Cut or Edit MP3 Files
- Clouds of Witness
- Library Loot: Third Trip in June
- Fer-de-lance
- CFBA: Pompeii
- Oscar Wilde and the Death of No Importance
- Download Licensed Software for Free Everyday
- 5 Free Alternatives Software to Winrar
- [Software] Open Any Type of File with Free Opener
- Apple buys a company to create its own Google Earth
- New Orkut Bug Let Anyone Edit & Delete Photos of A...
- Orkut Low Bandwidth Version – Good for Dial-Up and...
- Apple gets sued by company named “iCloud”
- How to Download YouTube Videos on Android
- The Cat Who Played Brahms
- Insta7 – Mobile App for Faster Browsing on GPRS/3G...
- The Cat Who Saw Red
- Doggirl (MG/YA)
- The Sweetest Thing
- Sunday Salon: Week In Review #24
- 2011 Challenges: Signing Up for Spring into Summer...
- Remove YouTube Logo from Embedded Videos
- Remove YouTube Logo from Embedded Videos
- Get the Best Windows Mobile Apps for Your Personal...
- Check Gmails Without Internet Connection [New Feat...
- Gmail’s People Widget!
- The Nero Wolfe Not-so-Mini Challenge
- 2011 Challenges: Signing up for my own Nero Wolfe ...
- Weekly Geeks: 2011-19 Quotables
- Library Loot: Second Trip in June
- Rage (YA)
- Changing Blogger Pages Gadget Background and Text ...
-
▼
June
(142)

