Thread Rating:
- 0 Votes - 0 Average
- 1
- 2
- 3
- 4
- 5
|
Make a drop down menu - Tutorial 18
|
| Author |
Message |
Admin
Administrator
      
Posts: 53
Joined: Nov 2009
Reputation: 0
|
Make a drop down menu - Tutorial 18
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.
|
|
| 04-22-2010 05:27 PM |
|