Home > Tutorial > Blogger Dynamic View Picture Menu
Blogger Dynamic View Picture Menu
Posted on Saturday, December 24, 2011 by android apps market for tablests
Two weeks ago, I showed a simple way to use pictures as your tab menu, instead of using the conventional plain old text. But I used HTML to go about it, and as it is widely known, Blogger does not allow HTML modification in Dynamic View. So here it is, the same tweak adapted to serve Dynamic View users, using CSS alone...
One important note before you start. If you have a drop-down pages menu in your Dynamic Views, this tweak isn't gonna be useful. I'm not saying it can't be done, just that I didn't bother to cover it as I figured having pictures in a drop-down menu is not gonna be that pretty. Also, it won't work on IE8 and earlier versions of IE (will work on IE9).
Note: It goes without saying that you MUST have pages links in your pages gadget before attempting this tutorial. This tutorial replaces your pages gadget from text-based links to picture-based menu. Make sure you can see your pages links (text-based) in your header-bar before attempting this tutorial.
Step 1:
First thing first. Get your pictures ready. I'm not gonna show you how to create/design your buttons. But I'll share a cool website that lets you create image buttons easily. Click the link below, and get your buttons created:
CoolText
Once you've created your image, click on Download Image and save it to your computer.
First thing first. Get your pictures ready. I'm not gonna show you how to create/design your buttons. But I'll share a cool website that lets you create image buttons easily. Click the link below, and get your buttons created:
CoolText
Once you've created your image, click on Download Image and save it to your computer.
Step 2:
Next, upload your image somewhere and get its direct link. Click here if you're not sure how to do this.
This is the direct link that I have gotten for my image:
Next, upload your image somewhere and get its direct link. Click here if you're not sure how to do this.
This is the direct link that I have gotten for my image:
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjKU9SJE1I_m44ViOhMG2lw-pe0WjE49m6erxhnIzNdi5LLzfUUeYw7u-TkUkV7eIqREEgqTe5goGCs95EoriOBnBGZLejb9ByDRdq6Sa6ut4lKTBERFj8KwgGUvV3-vauO1whUqrEMytE/s100/google-plus-logo-640.jpgGet the direct links for all the images that you want to insert into your tab. We're going to insert the addresses of these images into the code in the next step. In this example, I'm going to use 3 images.
Step 3:
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.
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.
#pages.tabs ul{
margin-left: 5px !important;
}
#header .tabs li {
display: inline-block;
height: auto;
line-height: auto;
margin: 0px;
}
#pages.tabs ul li:nth-child(1) a:link{
background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjKU9SJE1I_m44ViOhMG2lw-pe0WjE49m6erxhnIzNdi5LLzfUUeYw7u-TkUkV7eIqREEgqTe5goGCs95EoriOBnBGZLejb9ByDRdq6Sa6ut4lKTBERFj8KwgGUvV3-vauO1whUqrEMytE/s100/google-plus-logo-640.jpg') center no-repeat !important;
font-size: 1%;
color: transparent !important;
display: block;
width: 100px !important;
}
#pages.tabs ul li:nth-child(2) a:link{
background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUmS_nAfgA5EPHO6QCKKw0unBwSAU5Jmwcf_RnLAlvtBD49BDQU_b0VMXxv6wSgZHeuKa0oX1kMGzty7U7doFfFgbaQ3TtLck-lW2uQu3qV5r5EB_hlvM4ymUsHD3271y24vxY8fNNJfk/s100/twitter_logo.jpg') center no-repeat !important;
font-size: 1%;
color: transparent !important;
display: block;
width: 100px !important;
}
#pages.tabs ul li:nth-child(3) a:link{
background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPvUItMgWpvvG21Pc8ZoBUxPjLFVa2NLPRYMMMznKPElBFVdxEN-RvalrYGH_Gsflf94Sm4lUFbqwEEEKJZvOj15hRZ68XoM0o2HD-Wqkt94cJ54HfZh1ta3hLheaRo-FT7nUnxKsPEfg/s105/facebook_logo.jpg') center no-repeat !important;
font-size: 1%;
color: transparent !important;
display: block;
width: 100px !important;
}
Step 4:
Replace the addresses in lines 13, 20 and 27 above, with those of your images. Also, you may need to change the width of each one of your images to fit your menu better. You can do this by changing the width attribute in lines 16, 23 and 30.
Replace the addresses in lines 13, 20 and 27 above, with those of your images. Also, you may need to change the width of each one of your images to fit your menu better. You can do this by changing the width attribute in lines 16, 23 and 30.
Extra:
If you have more than 4 images, simply add the template below for your additional images. You need to enter the sequence of the picture in line 1. For example, if this is the 4th picture, then replace 'PICTURE_NUMBER' with '4'.
If you have more than 4 images, simply add the template below for your additional images. You need to enter the sequence of the picture in line 1. For example, if this is the 4th picture, then replace 'PICTURE_NUMBER' with '4'.
#pages.tabs ul li:nth-child(PICTURE_NUMBER) a{
background: url('IMAGE_ADDRESS') center no-repeat !important;
font-size: 0px;
display: block;
width: 100px !important;
}
May this Christmas be joyous and cheerful, and may the New Year be the best year yet for you. Wishing you lots of love, joy and happiness. Merry Christmas and Happy 2012!
Category Article Dynamic View, Tutorial
Powered by Blogger.
Blog Archive
-
▼
2011
(4034)
-
▼
December
(89)
- Top 10 Tech Moments of 2011
- Load Balancing Internet Hosting Technologies And W...
- Google Adds CO.CC to Their Index Again!
- Facebook Profile Tracker
- Year in Review: My Favorites of 2011
- Removing Border and Shadow from Selected Images in...
- Year in Review: 12 Books of the Month
- Year In Review: 52 Book of the Weeks
- December Reflections
- The Future of Us (YA)
- YouTube Unveils Slam: Pits Similar Videos Against ...
- Best Hotfile Downloader – Hotfile Download Manager
- Add Managers to Your Google+ Pages
- Privacy bug in Facebook Timeline cover photos
- Presumption of Death
- Download Opera Mini 4.4 Handler UI 202 Official .j...
- PhotoLive – Simplest Online Tool to Download Faceb...
- Library Loot: Fifth Trip in December
- 2012 Challenges: European Reading Challenge
- Top Ten MG/YA Fantasy OR Science Fiction
- Top Ten Historical Fiction
- Top 5 Websites to Download Free Ebooks
- Download window 8 iso image
- 300 High paying adsense keywords 2011
- Thrones, Dominations
- Facebook Chat hidden feature; add profile pictures...
- Add Custom Headers to your WordPress.org plugins
- Story of GoDaddy’s PR Disaster Over SOPA
- The Time Traveller's Guide to Medieval England
- Top Ten Dorothy Sayers' Quotes
- Free Download Hotspot Shield – Top Wi-Fi Security ...
- How to hide some/all family relations from Faceboo...
- Free Online Tool to Backup Tweets on Google Calendar
- How Does SOPA (Stop Online Piracy Act) Work! – Inf...
- Pride and Prejudice
- Sunday Salon: Week In Review #51
- Top Ten Mysteries
- Eve (YA)
- All These Things I've Done (YA)
- Blogger Dynamic View Picture Menu
- Review of Samsung Galaxy Note: Should You Buy It?
- How Apple’s Brands Ruled Twitter in 2011
- Hound Dog True (MG)
- The Help
- 2011 Challenges Completed: Fall Into Reading
- Library Loot: Fourth Trip in December
- Busman's Holiday
- I Am Half Sick of Shadows
- Use Custom Theme Tool on Your Windows Phone
- MTV Roadies is the Most Social TV Show
- 2012 Challenges: Award-Winning Reads Challenge
- The Secret History of Tom Trueheart (MG)
- 2012 Challenges: Short Story Reading Challenge
- 2012 Challenges: Time Travel Reading Challenge
- Sunday Salon: Week In Review #50
- 2012 Challenges: Science Fiction Experience
- Library Loot: Third Trip in December
- Facebook Timeline profiles are now available world...
- 2012 Challenges: New Author Challenge
- 2012 Challenges: TBR Pile Reading Challenge
- 2012 Challenges: Back to Classics Reading Challenge
- (Revisiting) Doomsday Book
- 2012 Challenges: Chunkster Challenge
- 2012 Challenges: Historical Fiction
- 2012 Challenges: And now for some vintage mysterie...
- Hercule Poirot's Christmas
- Gideon The Catpurse (The Time Travelers) (MG)
- 2012 Challenges: War Through the Generations, WWI
- 2012 Challenges: Science Fiction Challenge
- 2012 Challenges: And now for a cozy mystery challe...
- 2012 Challenges: And my first challenge to sign up...
- How to Install DAHDI for Asterisk
- Library Loot: Second Trip in December
- Sunday Salon: Week in Review #49
- Blogger Picture Menu
- Return of the King
- The Nine Tailors
- The Fat Man
- Library Loot: First Trip in December
- Sunday Salon: Week in Review #48
- A Shilling for Candles
- New Asiasat 7 satellite launched on 26th November ...
- How Chrome Raced to 2nd Spot in 2 Years
- Google+ Vs. Twitter Review
- Remove Loading Gear from Blogger Dynamic View
- The Death Cure (YA)
- Download Torrents in Java, Windows, Symbian and An...
- Best App for Twitter on iPhone, Android and BlackB...
- YouTube’s New Design
-
▼
December
(89)

