The Tutorials Online

Full Version: Make a drop down menu - Tutorial 18
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Its looks very professional to have a drop down menu in blogs ahing all the links to pages.

you can also make one very easily.
Just add this code in your sidebar or in main page post where you want to show the menu.
Code:
<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"size=1 name=menu>
<option>- Blog Tutorial - </option>
<!-- change the links with your own -->
<option value="http://yourblog.blogspot.com/">Home</option>
<option value="http://yourblog2.blogspot.com/">Contact us</option>
<option value="http://yourblog3.blogspot.com/">News</option>
<option value="http://yourblog4.blogspot.com/">About us</option>
</select></form>


you can add as many options you want.
Reference URL's