Drop down menu help users to navigate easily. It is user friendly and you will often see many trends in which drop-down menus are used, It help to organize categories and tags, but the problem is that blogger is not providing this type of menu to there user but we can indirectly add this drop down menus to blogger by adding certain html/css codes. In this post I will give you multi level navigation menu with awesome css3 animation.
Recommended Post : CSS Thin Style Dropdown Menu For Blogger
Add This Menu To Blogger :
The steps are extremely straightforward, and would merely take 5 minutes to complete the integration. Just follow the steps as mention below.
Step 1: Go to Blogger Dashboard >> Template >> Edit HTML >> Proceed
Step 2: Now within the template search for ]]></b:skin> and just above it paste the following Style sheet CSS Code.
Step 3: After Pasting Above Code Click On Save Button
Step 4: Now according to you need paste the following code where you want to place this widget. For Example Layout >> Add a Gadget >> Edit HTML/JavaScript.
<div id='cssmenu'>
<ul>
<li class='active'><a href='/'><span>Home</span></a></li>
<li class='has-sub'><a href='#'><span>Products</span></a>
<ul>
<li class='has-sub'><a href='#'><span>Product 1</span></a>
<ul>
<li><a href='#'><span>Sub Item</span></a></li>
<li class='last'><a href='#'><span>Sub Item</span></a></li>
</ul>
</li>
<li class='has-sub'><a href='#'><span>Product 2</span></a>
<ul>
<li><a href='#'><span>Sub Item</span></a></li>
<li class='last'><a href='#'><span>Sub Item</span></a></li>
</ul>
</li>
</ul>
</li>
<li><a href='#'><span>About</span></a></li>
<li class='last'><a href='#'><span>Contact</span></a></li>
</ul>
</div>
- Replace all # with respected link.
- After Customizing it and adding all code successfully click on save template and preview this menu live on your blog.
End.
0 comments:
Post a Comment