The name of this menu is drop down menu.To make the dropdown menu, you only make the code be like this :
**********************************************************
<form><select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"size=1 name=menu><option value=0 selected> Your text title here! </option>
<option value=" your address link here "> the text here will be display </option> </select></form>
**********************************************************
For example, the code such as the following :
**********************************************************
<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://blogspot-tutorial-centre.blogspot.com/2009/09/how-to-change-template-without-deleting.html">Start to blogging</option>
<option value="http://blogspot-tutorial-centre.blogspot.com/2009/09/guide-on-creating-blog-at-blogspot.html">Blog setting</option>
<option value="http://blogspot-tutorial-centre.blogspot.com/2009/09/how-to-use-settings-your-blog.html">Backup template</option>
<option value="http://blogspot-tutorial-centre.blogspot.com/2009/09/how-to-backup-template-in-blogspot.html">backup widget</option>
</select></form>
**********************************************************
This is the result :
You can make the drop down menu more than one, just make the code more than one, so very simple.
Now, how to add this code to your blog. This is the step :
1.Login to blogger with your ID
2.After entering the dasboard page , click Layout.

3.Click at Page Elements tab. See the picture below :

4.Click at Add a Gadget.
5.After emerging pop up window , click add to blog button for the things HTML/JavaScript.

6.Copy and paste the code below into available column :
**********************************************************
<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://blogspot-tutorial-centre.blogspot.com/2009/09/how-to-change-template-without-deleting.html">Start to blogging</option>
<option value="http://blogspot-tutorial-centre.blogspot.com/2009/09/guide-on-creating-blog-at-blogspot.html">Blog setting</option>
<option value="http://blogspot-tutorial-centre.blogspot.com/2009/09/how-to-use-settings-your-blog.html">Backup template</option>
<option value="http://blogspot-tutorial-centre.blogspot.com/2009/09/how-to-backup-template-in-blogspot.html">backup widget</option>
</select></form>
**********************************************************
7.Click and save
No comments:
Post a Comment