Author Topic: Working with menus  (Read 73169 times)

December 15, 2005, 07:45:29 AM
  • Guest

How to create pull down menus from psd templates.  I saved a template using phtoshop "save as web" into html format.  Now how to work with pull down and other menu functions.  

Kindly advise.


December 15, 2005, 09:38:44 AM
Reply #1
  • Administrator
  • Expert
  • *****
  • Posts: 90
    • View Profile
    • Ossoba Studio

Hi Lawrence,

There is no way to make "pull down menu" in Photoshop. You have to use some HTML editor to edit the HTML file.
Below is a simple code of pull down menu:

Code: [Select]

<form name="form">
<select name="menu">
<option value="http://yourwebsitename.com/home.html">home</option>
<option value="http://yourwebsitename.com/about.html">about</option>
<option value="http://yourwebsitename.com/contact.html">contact</option>
</select>
<input type="button" onClick="location=document.form.menu.options[document.form.menu.selectedIndex].value;" value="GO" />
</form>



Copy the code between the BODY tags of your HTML document.
Replace “http://yourwebsitename.com/contact.html ...” with the path to your own web pages.
If you need different kind or more complicated menu we can help you.

Good luck!


Ossoba Design Studio

Pull down menu
« Reply #1 on: December 15, 2005, 09:38:44 AM »
Improve your website with our web resources.