PDA

View Full Version : Creating a dropdown list


Speedy2000
10-15-2007, 06:08 PM
I want to create a dropdown menu in the postbit_legacy, like the one used in the navbar with Quick Links. Does anyone know how to create this? I need to know where to put the title of the menu, and the fields of the menu. I don't need links inside it, because I want to use it to display additional information.

Analogpoint
10-15-2007, 06:52 PM
<form action="">
<select name="nothing">
<option value="">Line one</option>
<option value="">Line two</option>
<option value="">Line three</option>
</select></form>

Speedy2000
10-16-2007, 07:26 AM
That appears to be a 'simple dropdown list' like this:
https://vborg.vbsupport.ru/external/2007/10/24.jpg

But I want to create a dropdown menu like this:
https://vborg.vbsupport.ru/external/2007/10/25.jpg

ragtek
10-16-2007, 08:28 AM
then say it right ;)

http://www.vbulletin.com/docs/html/main/templates_vbmenu

Speedy2000
10-16-2007, 09:40 AM
Thanks :)