• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
logo

All Blogging Tips

Everything About Blogging

  • Home
  • Start a Blog
  • About
  • Contact
  • Work With Me
  • Tools I Use

Stylish Pure CSS3 Multi Level Drop Down Menu For Blogger V2

By Ammar Ali 15 Comments

I recently posts Pure CSS3 Multi Level Drop Down Menu For Blogger V1. I gets good response for this so I decided to release Pure CSS3 Multi Level Drop Down Menu V1. This Multi Level Drop Down Menu is modifed version of previous css3 menu. I had added some cool features to this menu. This menu is a Stylish Pure CSS3 Multi Level Drop Down Menu For Blogger. It is compatible for almost all browsers like Mozilla Firefox and Google Chrome etc but the rounded corners and shadow will not be rendered properly. I had made installation so easy you just need to copy and paste menu code in your blogger blog widget. This Menu  is provided by webDesignerWall guys and it is widgetized and made compatible with Blogspot blog platform by MBT.

See Also

  • Css3 Drop Down Menu For Blogger V1
  • Smooth Multi Level Drop Down Menu for Blogger
Table of Contents
    • Pure CSS3 Multi Level Drop Down Menu V2 Preview
  • Add Pure CSS3 Multi Level Drop Down Menu V2 To Blogger
    • Confused or Need Help?

Pure CSS3 Multi Level Drop Down Menu V2 Preview

stylish drop down menu v1

Live Demo

Add Pure CSS3 Multi Level Drop Down Menu V2 To Blogger

  1. Go To Blogger > Design
  2. Click on “Add a Gadget”
  3. Choose HTML/Javascript widget
  4. Paste the following code inside it

 

<style>
#ABT-Container {
    font: normal 1em Arial, Helvetica, sans-serif;
    background : #ddd; width:100%; float:left;   
}
a {
    color: #333;
}.example {
    background:#fff url(http://www.gowebbaby.com/wp-content/uploads/2011/12/website-designer.gif)center right  no-repeat;
    width:1200px;
    height:600px;
    border:1px #000 solid;
    margin:20px auto;
    padding:15px;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}

#nav {
    margin: 0;
    padding: 7px 6px 0;
    background: #0080ff url(http://2.bp.blogspot.com/-A86MDTlHnVo/TtC-qF3gIQI/AAAAAAAAFbw/Vv41gIktCig/s1600/gradient.png) repeat-x 0 -110px;
    line-height: 100%;
    border-radius: 2em;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0, .4);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0, .4);
}
#nav li {
    margin: 0 5px;
    padding: 0 0 8px;
    float: left;
    position: relative;
    list-style: none; }

/* main level link */
#nav a {
    font-weight: bold;
    color: #e7e5e5;
    text-decoration: none;
    display: block;
    padding:  8px 20px;
    margin: 0;
    -webkit-border-radius: 1.6em;
    -moz-border-radius: 1.6em;
   
    text-shadow: 0 1px 1px rgba(0,0,0, .3);
}
#nav a:hover {
    background: #000;
    color: #fff;
}
/* main level link hover */
#nav .current a, #nav li:hover > a {
    background: #666 url(http://2.bp.blogspot.com/-A86MDTlHnVo/TtC-qF3gIQI/AAAAAAAAFbw/Vv41gIktCig/s1600/gradient.png) repeat-x 0 -40px;
    color: #444;
    border-top: solid 1px #f8f8f8;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0, .2);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0, .2);
    box-shadow: 0 1px 1px rgba(0,0,0, .2);
    text-shadow: 0 1px 0 rgba(255,255,255, 1);
}
/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
    background: none;
    border: none;
    color: #666;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
#nav ul a:hover {
    background: #0080ff url(http://2.bp.blogspot.com/-A86MDTlHnVo/TtC-qF3gIQI/AAAAAAAAFbw/Vv41gIktCig/s1600/gradient.png) repeat-x 0 -100px !important;
    color: #fff !important;
text-align:left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    text-shadow: 0 1px 1px rgba(0,0,0, .1);
}
/* dropdown */
#nav li:hover > ul {
    display: block;
}
/* level 2 list */
#nav ul {
    display: none;
text-align:left;
    margin: 0;
    padding: 0;
    width: 185px;
    position: absolute;
    top: 35px;
    left: 0;
    background: #ddd url(http://2.bp.blogspot.com/-A86MDTlHnVo/TtC-qF3gIQI/AAAAAAAAFbw/Vv41gIktCig/s1600/gradient.png) repeat-x 0 0;
    border: solid 1px #b4b4b4;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
    box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#nav ul li {
    float: none;
    margin: 0;
    padding: 0;
}
#nav ul a {
    font-weight: normal;
    text-shadow: 0 1px 0 #fff;
}
/* level 3+ list */
#nav ul ul {
    left: 181px;
    top: -3px;
}
/* rounded corners of first and last link */
#nav ul li:first-child > a {
    -webkit-border-top-left-radius: 9px;
    -moz-border-radius-topleft: 9px;
    -webkit-border-top-right-radius: 9px;
    -moz-border-radius-topright: 9px;
}
#nav ul li:last-child > a {
    -webkit-border-bottom-left-radius: 9px;
    -moz-border-radius-bottomleft: 9px;
    -webkit-border-bottom-right-radius: 9px;
    -moz-border-radius-bottomright: 9px;
}
/* clearfix */
#nav:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#nav {
    display: inline-block;
}
</style>

<div id="ABT-Container">
<ul id="nav">
<li><a href="#">Home</a></li>
<li><a href="#">All Blogging Tips</a>
<ul>
<li><a href="#">Sub-Row</a>
<ul>
<li><a href="#">Sub Sub-Row 1
<li><a href="#">Sub Sub-Row 1</a></li>
<li><a href="#">Sub Sub-Row 1</a></li>
<li><a href="#">Sub Sub-Row 1</a></li>
</a></li></ul>
</li>
<li><a href="#">Sub-Row</a>
<ul>
               
<li><a href="#">Sub Sub-Row 2</a></li>
</ul>
</li>
<li><a href="#">Sub-Row</a></li>
<li><a href="#">Sub-Row</a></li>
</ul>
</li>

<li><a href="#">Multi-Levels</a>
<ul>
<li><a href="#">Team</a>
<ul>
<li><a href="#">Sub-Level Item 1</a></li>
<li><a href="#">Sub-Level Item 1</a>
<ul>
<li><a href="#">Sub-Level Item 11</a></li>
<li><a href="#">Sub-Level Item 22</a></li>
<li><a href="#">Sub-Level Item 33</a></li>
</ul>
</li>
                   
<li><a href="#">Sub-Level Item 1</a></li>
</ul>
</li>
<li><a href="#">Sales</a></li>
<li><a href="#">Another Link</a></li>
<li><a href="#">Department</a>
<ul>
<li><a href="#">Sub-Level Item 2</a></li>
<li><a href="#">Sub-Level Item 2</a></li>
<li><a href="#">Sub-Level Item 2</a></li>
</ul>
</li>
</ul>
</li><li><a href="#">Sitemap</a></li>   
<li><a href="#">Services</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">About Us</a></li>
<li><a href="https://allbloggingtips.com/2012/01/28/pure-css3-multi-level-drop-down-menu-v2">Create This »</a></li>

</ul></div>
<br/>

The best part about this Multi Level Drop Down Menu is that you can give it any colour you want because here we are using a transparent gradient image which can take any colour you want. Like:

Transperent ExapmleNow kindly make these customization changes to add your own links to menu:

  • Each TAB can be edited by directly understanding the following HTML code,

<li><a href=”#“>TAB TEXT</a></li>

In each case replace the hash sign (#) with your page URL or link and replace the text with your page title. I have kept the page titles unchanged in the code above so that you could easily edit them by seeing the demo.

Confused or Need Help?

If you need some extra help in removing rows or columns then please feel free to post your questions. You can discus it as much with me as possible. This will help others to better understand on how to make further changes. :D

Share this post:

Share on X (Twitter) Share on Facebook Share on Pinterest Share on Email Share on WhatsApp

About Ammar Ali

A blogger, web designer, front-end developer and WordPress specialist since 2011. I started this blog during high school. Here I share what I've learned so far and what I continue to learn through blogging so that I can be of assistance in some way to improve your blog. Read more here.

Reader Interactions

Comments

  1. Nicho says

    June 22, 2012 at 6:03 am

    I am having this same problem. it looks all funny and wrong to what it is supposed to look like

    Reply
    • Ammar Ali says

      June 24, 2012 at 6:12 pm

      May I have your blog link please!

      Reply
  2. Artzz says

    June 3, 2012 at 11:34 pm

    I’m having some problem- like cut-off of drop down menu..can u plz chk it?

    Reply
    • Ammar Ali says

      June 4, 2012 at 9:08 am

      This mean is not supported with default Blogger Theme: Try this menu :D https://allbloggingtips.com/apple-mac-style-drop-down-menu-with-search-box/

      Reply
  3. Idham says

    February 19, 2012 at 3:33 pm

    Hey, I have same problem too. I have sent you email that contain my blog template.
    please help me and tell me what you did
    thanks

    Reply
  4. sylivia says

    February 18, 2012 at 6:41 am

    Hi.Really liked your tutorial however my question is about the new blogger option which allows the blogger to create pages (I use them to link viewers to labeled posts).
    I have them (labels) set up as a menu at the top of my photo blog.(example: Portrait Landscape Creative) Do you perhabs know how to change them into drop down menu, so I could create sub categories in the existing labels?
    Kind Regards

    Reply
    • Ammar says

      February 18, 2012 at 8:45 pm

      Give us your blog URL and a detail of problem on this email Admin@AllBloggingTips.com

      Reply
  5. Jay says

    February 11, 2012 at 10:17 pm

    I am having a similar problem than Joui above my friend. If you can help me implement this drop down menu without any of these errors, I would be ever so grateful.

    Maybe I can promote your site on my site if you wish?

    Kind regards Ammar
    Jay

    Reply
    • Ammar says

      February 12, 2012 at 8:53 am

      OK. Jay. Send us your template at ammar@allbloggingtips.com . We will add this menu.

      Reply
  6. Joui says

    February 9, 2012 at 7:36 pm

    I can’t make it work at all… it looks like this in my blog:

    http://i40.tinypic.com/12639lt.jpg

    Reply
    • Ammar says

      February 9, 2012 at 7:54 pm

      We had send you solution of problem to your email. Check it out. If problem is not solved than send us your template.

      Reply
      • Joui says

        February 11, 2012 at 6:07 pm

        Thank. It seems the problem was with the ” symbol you use. I changed for ” and it works better. But it’s still not working well because the menu doesn’t overlap the posts… any solutions?

        Reply
        • Joui says

          February 11, 2012 at 6:09 pm

          here is what it looks like: http://prova46.blogspot.com/

          Reply
        • Ammar says

          February 11, 2012 at 6:12 pm

          Send us your template on this email as soon as you want menu. ammar@allbloggingtips.com

          Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Get Blogging & SEO Tips by Email

Get helpful blogging, SEO, and content tips delivered straight to your inbox. No spam.

Join 3,489 other subscribers

Popular Posts

  • Is Your Blog Properly Optimized for Performance and SEO?
  • 10 Powerful Ways to Become a Famous Blogger
  • Google AdSense vs Affiliate Marketing: A Simple Comparison for Beginners
  • Effective Ways to Increase Content Reach and Audience Engagement
  • 12 Things to Do Before Applying for Google AdSense
  • Are Backlinks Becoming Less Valuable in Modern SEO?
  • Step-by-Step Guide to Creating a Successful Travel Blog
  • How to Start as a Freelance Writer & Is It Worth?
  • Add Smooth Multi Level Drop-Down Menu In Blogger
  • How To Delete A Blogger Blog Permanently In 5 Minutes (+ FAQs)

Let Me Help You!

Let me take care of your website and make it run like a champ. I can help you with blog setup, migration, quick fixes or maintenance services.

Work With Me

Footer

About This Site

All Blogging Tips helps beginners learn how to start, grow, and monetize blogs using WordPress. I share practical guides and honest recommendations based on real blogging experience.

Read more →

Site & Resources

  • Tools I Use
  • About
  • Advertise Here
  • Contact
  • Disclosure Policy
  • Copyright Policy
  • Privacy Policy

Start & Grow Your Blog

  • A Ridiculously Helpful Guide to Start Your Own Blog In 10 Minutes
  • How To Grow Your Blog And Build An Audience
  • How To Make Money From Your Blog
  • Cheap WordPress Hosting
  • Free WordPress Hosting

Copyright © 2026 All Blogging Tips · Powered by InMotion Hosting · WordPress · Log in