Website Design > Template Customization
Working with menus
(1/1)
Lawrence:
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.
ognen:
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: ---
<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>
--- End code ---
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!
Navigation
[0] Message Index
Go to full version