Welcome Guest ( Log In | Register)



2 Pages V   1 2 >  
Reply to this topicStart new topic
> need help with drop down menus!!
holyium
post Aug 20 2004, 07:09 AM
Post #1


Newbie [Level 1]
*

Group: Members
Posts: 16
Joined: 20-August 04
Member No.: 854



can any1 help me give a simple solution about mamking drop down menus with any programs or simple html coding. i want my site to look better than my friends ones but basic things like this are difficult for noobs like me to overcome
Go to the top of the page
 
+Quote Post
truvu17
post Aug 20 2004, 08:57 PM
Post #2


Member [Level 1]
****

Group: Members
Posts: 53
Joined: 4-August 04
Member No.: 633



I would like to know more about drop down menus for flash, please help, thanks. Also what else do I need besides flash mx in order to make it.
Go to the top of the page
 
+Quote Post
darvtech
post Aug 21 2004, 05:26 AM
Post #3


Newbie [Level 1]
*

Group: Members
Posts: 13
Joined: 20-August 04
Member No.: 858



In HTML you can use the 'select' tag to make a drop down menu. Inside it, you use the 'option' tag to add elements to the menu.

<select multiple name="NAME" size=?></select>
Creates a scrolling menu. Size sets the number of menu items visible before you need to scroll.


<select name="NAME"></select>
Creates a pulldown menu


<option>
Sets off each menu item

For example this will create a menu with two items:

<select name="menu1">
<option>Element 1
<option>Element 2
</select>

To make better use of this, it would be good to learn javascript too.
Go to the top of the page
 
+Quote Post
hasa
post Aug 25 2004, 07:56 AM
Post #4


Newbie [Level 1]
*

Group: Members
Posts: 13
Joined: 1-August 04
Member No.: 404



If you want good dropdown menu visit http://www.dynamicdrive.com/
They have really useful DHTML (javascript) dropdown menus and good tutorial for install it. biggrin.gif

hasa
_ _ _ _ _ _ _ _ _ _ _ _
The only true success is when you live fife your own way
Go to the top of the page
 
+Quote Post
qingtian
post Aug 31 2004, 12:10 PM
Post #5


Premium Member
********

Group: Members
Posts: 181
Joined: 3-August 04
From: Australia, Victoria, Melbourne.
Member No.: 575



If you want a simple drop down list I recommend you visit http://www.funky-chickens.com it shows you all the basics aswell and it's pretty helpful especially for beginners smile.gif
Go to the top of the page
 
+Quote Post
neeki4444
post Sep 1 2004, 09:41 PM
Post #6


Newbie [Level 2]
**

Group: Members
Posts: 38
Joined: 31-August 04
Member No.: 967



try

<select>
<optgroup label="Pick One" title="Pick">
<option value="232"> Choise 1 < /option>
</optgroup>
</select>

with optgroup users can't select Pick One, it is just use as a title


insted of

<select>
<option> Pick One </option>
<option value="232"> Choise 1 < /option>
</select>
Go to the top of the page
 
+Quote Post
JesterDude
post Sep 4 2004, 12:34 PM
Post #7


Newbie [Level 1]
*

Group: Members
Posts: 12
Joined: 4-September 04
Member No.: 1,008



Wow u guys are real good for html stuff, u think u can help me find a site where i can learn ?

thanks
Go to the top of the page
 
+Quote Post
GameDev
post Sep 11 2004, 02:43 PM
Post #8


Newbie [Level 1]
*

Group: Members
Posts: 14
Joined: 8-September 04
Member No.: 1,052



Just try a search on google about learning html for good resources. I get a lot of my graphic stuff from http://www.guistuff.com because no HTML knowledge is required for those. Plus they have all kinds of other things too(templates,etc.).
Go to the top of the page
 
+Quote Post
Choyan
post Sep 29 2004, 01:26 AM
Post #9


Newbie [Level 2]
**

Group: Members
Posts: 36
Joined: 29-September 04
From: New Zealand
Member No.: 1,323



Hey, that's cool~~ I need that info~ thanks! biggrin.gif
Go to the top of the page
 
+Quote Post
Trystim
post Sep 29 2004, 01:33 AM
Post #10


Super Member
*********

Group: Members
Posts: 221
Joined: 6-September 04
Member No.: 1,035



Big Nose Bird

awesome site for when your first starting out with HTML and other web languages as well. I still refer to it on occasion might wanna swing by and check it out as well.