How To Add Drop Down Navigation Menu In Blogger

Previously, I shared a tool by which bloggers can check and correct the grammatical mistakes in their articles and Today I'm going to s...

Drop Down Menu
Previously, I shared a tool by which bloggers can check and correct the grammatical mistakes in their articles and Today I'm going to share the simple drop down navigation menu for blogger. This is important for every blogger to make the navigation easier of their blogs due to several reasons and drop down navigation  menu is an ideal thing for it. In these kind of menus, when someone hovers the mouse cursor on any specific category then it drops some sub categories of it in the vertical style. And due to this effect, it is known as best menu style. Well, before installing this in your blog first let me tell you something about this.

Drop Down Navigation Menu

This is the simple drop down navigation menu which is built with pure HTML, CSS3 and JQuery. It has a gray color because it is user friendly and it will not affect the visitors' eyes. You know some heavy colors like Purple, Blue and Orange affect the visitors' eyes and most web designers use light colors. So this menu shows the vertical sub categories when you'll place the mouse on any drop down menu. It also has a focus or click effect. You can have a look at this by visiting the below demo link.

Tutorial

Tutorial of installing this menu is your blog is just left hand game. Yeah! It is simply easy. So, follow the below given steps and add it.
  1. Go To Blogger >> Layout >> Add a Gadget (In The Header Area)
  2. Choose "HTML/JavaScript"
  3. Paste The Following Code In The Content Box
  4. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js">
    </script>

    <script type="text/javascript">
      $(function() {
        //We initially hide the all dropdown menus
        $('#dropdown_nav li').find('.sub_nav').hide();
     
        //When hovering over the main nav link we find the dropdown menu to the corresponding link.
        $('#dropdown_nav li').hover(function() {
          //Find a child of 'this' with a class of .sub_nav and make the beauty fadeIn.
          $(this).find('.sub_nav').fadeIn(100);
        }
                                    , function() {
                                      //Do the same again, only fadeOut this time.
                                      $(this).find('.sub_nav').fadeOut(50);
                                    }
                                   );
      }
       );
    </script>
    <style>
      #dropdown_nav a {
    font-family:Arial, Sans-Serif;
            font-size:15px;
            font-weight:bold;
            color:#525252;
            text-decoration:none;
          }
          #dropdown_nav {
            width:960px;
            padding:0px;
            display:inline-block;
            list-style:none;
            -moz-box-shadow:inset 0px 0px 1px #fff;
            -webkit-box-shadow:inset 0px 0px 1px #fff;
            border:1px solid #ccc;
            -moz-border-radius:5px;
            -webkit-border-radius:5px;
            background:#e2e2e2;
            background:-moz-linear-gradient(#f3f3f3, #e2e2e2);
            background:-webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#e2e2e2));
          }
       
          #dropdown_nav li {
    padding:10px 0px 10px 0px;
    float:left;
    position:relative;
    display:inline-block;
          }
       
          #dropdown_nav li a {
            padding:10px 15px 10px 15px;
            text-shadow:-1px 1px 0px #f6f6f6;
            -moz-box-shadow:inset 0px 0px 1px #fff;
            -webkit-box-shadow:inset 0px 0px 1px #fff;
            border-right:1px solid #ccc;
          }
          #dropdown_nav li a:hover {
            background:#f9f9f9;
            background:-moz-linear-gradient(#f9f9f9, #e8e8e8);
            background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#e8e8e8));
          }
          #dropdown_nav li a:active {
            background:#e2e2e2;
            background:-moz-linear-gradient(#e2e2e2, #f3f3f3);
            background:-webkit-gradient(linear, 0 0, 0 100%, from(#e2e2e2), to(#f3f3f3));
          }
       
          #dropdown_nav li a.first {
            -moz-border-radius:5px 0px 0px 5px;
            -webkit-border-radius:5px 0px 0px 5px;
          }
          /*#dropdown_nav li a.last {
          -moz-border-radius:0px 5px 5px 0px;
          -webkit-border-radius:0px 5px 5px 0px;
        }
          */
       
          /* Sub-Nav styling */
          #dropdown_nav .sub_nav {
            width:160px;
            padding:0px;
            position:absolute;
            top:38px;
            left:0px;
            border:1px solid #ccc;
            background:#e2e2e2;
          }
       
          #dropdown_nav .sub_nav li {
            width:160px;
            padding:0px;
          }
       
          #dropdown_nav .sub_nav li a {
            display:block;
            border-bottom:1px solid #ccc;
            background:-moz-linear-gradient(#f3f3f3, #e2e2e2);
            background:-webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#e2e2e2));
          }
          #dropdown_nav .sub_nav li a:hover {
            background:#f9f9f9;
            background:-moz-linear-gradient(#f9f9f9, #e8e8e8);
            background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#e8e8e8));
          }
          #dropdown_nav .sub_nav li a:active {
            background:#e2e2e2;
            background:-moz-linear-gradient(#e2e2e2, #f3f3f3);
            background:-webkit-gradient(linear, 0 0, 0 100%, from(#e2e2e2), to(#f3f3f3));
          }
    </style>
    <!-- Navigation Start -->
    <ul id="dropdown_nav">
    <li><a class="first" href="http://www.bloggeryard.com/">Home</a></li>
    <li><a href="#">Tutorials</a>
    <ul class="sub_nav">
    <li><a href="#">Photoshop #1</a></li>
    <li><a href="#">Photoshop #2</a></li>
    <li><a href="#">Photoshop #3</a></li>
    <li><a href="#">Photoshop #4</a></li>
    <li><a href="#">Photoshop #5</a></li>
    <li><a href="#">Photoshop #6</a></li>
    <li><a href="#">Photoshop #7</a></li>
    </ul>
    </li>
    <li><a href="#">Artciles</a>
    <ul class="sub_nav">
    <li><a href="#">Announcements #1</a></li>
    <li><a href="#">Announcements #2</a></li>
    <li><a href="#">Announcements #3</a></li>
    <li><a href="#">Announcements #4</a></li>
    </ul>
    </li>
    <li><a href="#">Freebies</a>
    </li>
    <li><a class="last" href="#">Other Stuff</a>
    <ul class="sub_nav">
    <li><a href="#">Other Stuff #1</a></li>
    <li><a href="#">Other Stuff #2</a></li>
    <li><a href="#">Other Stuff #3</a></li>
    <li><a href="#">Other Stuff #4</a></li>
    </ul>
    </li>
    </ul>
  5. Replace Yellow Highlighted Characters With Links
  6. Replace Green Highlighted Characters With Link Text
  7. Click "Save" Button
  8. That's All!

COMMENTS

Name

All Networks Free sim tricks oR mobile tips,2,Awesome English language Facts,9,Backtrack Bloging,1,Backtrack Bloging Bonds Books Computer Facebook Game,3,Backtrack Bloging Bonds Books Computer Facebook Game Hack Hacking How To Learn Hacking Learn in URDU Mobiles Mobilink Movies Net Working Nokia Cheats PakistanSEO,2,Backtrack Bloging Bonds Books Computer Facebook Game Hack Hacking How To Learn Hacking SEO,2,Beautiful Style SEO Friendly Premium Blogger Template Free,1,Best Websites,2,Best Websites to Download Free Blogger,1,Best Websites to Download Free Blogger Templates,1,bloger,33,Brain Training Pdf English Book Free Download,1,C++ Sekhiye Urdu Tutorial book by Zulqarnain CH,1,Call History Online,6,Changez Khan Pdf Urdu Book Download,1,Check Call History,6,Check Call History Of Your Sim Of Any Network,6,Check Sim,1,Check Sim Detail,5,Check Sim History,6,Check the Exceptional Functions of Three Tomatoes,1,Check the Primary Condition Of infant's Brain Development,1,Check you own number account detail and call history,1,City which is also known as the City of Canals is Venice,1,cktrack Bloging Bonds Books Computer Facebook Game Hack Hacking How To Learn Hacking SEO,1,Corel Draw Urdu Tutorial pdf book free download,1,Create Your Own Remarkable Website Book Download,2,Creating WordPress Themes Using Tools & Frameworks,1,Difference Between House and Home,1,Dilchasp Kahaniyan Book for Children free Download or Read Online,1,Download Cleantouch Urdu Dictionary for Free,1,Dunya K 70 Ajoobay Urdu Book Free download,1,Emergency Help Numbers,1,English Book of Adobe Photoshop CS tutorial download,1,English Guru pdf (English Language Course in Urdu) Download,1,EXPRESS NEWS,1,Facebook Game Hack Hacking How To Learn Hacking Learn in URDU Mobiles Mobilink Movies,1,Gensi Malomat by Prof: Arshad Javed book download,1,Google Hack Hacking How To Learn Hacking Learn in URDU Mobiles Mobilink Movies Net Working Nokia Cheats Pakistan Programming Security SEO,1,Guide To Make $1000/month Blogging Book Download,1,hello world,33,History of Barbie Doll,1,How to Create A Folder with security,1,How to Setup Domain & Hosting in urdu,1,How to transfer,1,How To Transfer Blogger To WordPress In Urdu Video Tuts,1,HTML & XML Urdu Tutorial Book Free Download,1,HTML Comlete Urdu Course book download free,1,Information about age of An olive Tree ?,1,informations in Urdu,1,Internet,33,Islam Mein Ghurbat Ka Ilaj Free download or Read Online,1,Islami Maloomat Ka Encyclopaedia Book Free Download,1,Jazz offers ack Hacking How To Learn Hacking SEO,1,Jazz tricks,1,Jinnat Sex Aur Insan pdf Urdu book download free,1,Keyboard Shortcuts,1,Latest All Network Database (Jazz,1,live,33,Live TV In Pakistan,1,Maut Ka Manzar by Khwaja Mohammad Islam Free Download,1,Meaning of Vice Versa,1,Mobilink Jazz tips and tricks free call sms internet latest updates,1,Mobilink Warid Ufone Zong Telenor Mobile tricks 2014,1,Movies,33,MS Office complete Urdu Learning book free download,1,Muslim Quiz Competition Urdu General Knowledge Book Download,1,MySQL aur Web Development Urdu Book Download,2,Naat,33,Networking Urdu Zuban Main Pdf Book,1,offers,33,online computer,33,Pages,33,Peer-e-Kamil Urdu Novel by Umaira Ahmad Download,2,PHP,2,Play,33,Prevent High Blood Pressure,1,Ptcl tricks,1,Saltanat-e-Usmania Urdu Pdf Book Free Download,1,Science Kay Azeem Mazameen Pdf Book Free Download,1,sense Tips – How To Increase Your Profits,1,Seo,33,SEO (search engine optimization) in urdu,1,Shadi ki Raat (Marriage Guide) pdf book download,1,share or send balance from ufone to ufone,1,Software,33,Songs,33,Swimming Pool on the 57th floor in Singapore,1,Tareekh-e-Tabri Urdu Vol 1-7 Complete Book Download,1,Telenor,1,Telenor free internet,1,The Oxford Guide to English Usage pdf Book,1,Tips,1,Top 5 SEO Friendly Blogger Templates in 2014,1,TOP Searches For USA Google Trend,1,tv,33,uFone,1,Ufone tricks,1,Urdu Book about Bait-ul-Muqaddas Free Download,1,Urdu Novel Devta All 50 parts Pdf Free Download,1,Useful Adsense Tips – How To Increase Your Profits,1,Very Interesting informations,2,Very Useful Ad-sense Tips,2,video,35,Waqiat Parhiye Aur Ibrat Lejiye,1,Waqiat Parhiye Aur Ibrat Lejiye Book Free Download or Read online,1,Warid tricks,1,Warid),1,Why Your website / Blog is Not Making Good Money?,1,Winning Body Language by Mark Bowden Download,1,World's Wildest Roller Coasters,2,Zavia 1 (1st Edition) By Ashfaq Ahmad Free Download,1,Zong,1,Zong latest tricks and tips 2014,1,Zong Trick,1,
ltr
item
Computer Ustaad - Urdu Video Tutorials - Online Ustaad: How To Add Drop Down Navigation Menu In Blogger
How To Add Drop Down Navigation Menu In Blogger
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNfZvjeGk4zJ-pmPSJ7rSfl3BD0zIakC8aqaTtsVodd4CaCqihGMcVPi5xhoiKrBa7MjyNtUvBPeVmazyZPDdwE3NnvMMRXhQninPjU1JR4GswolomzgL7GwPBz5x0O_ZRjB8UpiaDMqOn/s1600/Drop+Down+Menu.jpg
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNfZvjeGk4zJ-pmPSJ7rSfl3BD0zIakC8aqaTtsVodd4CaCqihGMcVPi5xhoiKrBa7MjyNtUvBPeVmazyZPDdwE3NnvMMRXhQninPjU1JR4GswolomzgL7GwPBz5x0O_ZRjB8UpiaDMqOn/s72-c/Drop+Down+Menu.jpg
Computer Ustaad - Urdu Video Tutorials - Online Ustaad
https://mubashirhassanpk.blogspot.com/2014/05/how-to-add-drop-down-navigation-menu-in.html
https://mubashirhassanpk.blogspot.com/
https://mubashirhassanpk.blogspot.com/
https://mubashirhassanpk.blogspot.com/2014/05/how-to-add-drop-down-navigation-menu-in.html
true
124932192977866089
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy