Format Drop down box
Format Drop down box
(OP)
OK! I got my embedded video player to play from a drop down box. Works great! What I would love to do is to format the drop down box a bit... every other choice a different color or something more exciting....does anyone know how to do this??? That would make a great effect! Thanks
RE: Format Drop down box
CODE
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Combo</title>
</head>
<body>
<select size="1" name="D1" style="font-style: italic">
<option value="1" style="color:#FF0000;">Alpha</option>
<option value="2" style="color:#00FF00;">Bravo</option>
<option value="3" style="color:#0000FF;">Charlie</option>
<option selected value="4">Delta</option>
</select>
</body>
</html>
RE: Format Drop down box
RE: Format Drop down box
CODE
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Combo</title>
</head>
<body>
<select size="1" name="D1" style="font-style: italic;">
<option value="1" style="color:#FF0000;background-color:##808000;">Alpha</option>
<option value="2" style="color:#00FF00;background-color:#000000;">Bravo</option>
<option value="3" style="color:#0000FF;background-color:#FFFFFF;">Charlie</option>
<option selected value="4" style="background-color:#000000;">Delta</option>
</select>
</body>
</html>
RE: Format Drop down box
it looks pretty cool though
RE: Format Drop down box
RE: Format Drop down box
RE: Format Drop down box
RE: Format Drop down box
<form name="form">
<select name="site" size=1>
<option value="">Go to....
<option value="http://www.yoursite.com/yourpage.html">Name your page here
<option value="http://www.yoursite.com/yourpage2.html">Name yoru page 2</select>
<input type=button value="Go!" onClick="javascript:formHandler(this)">
</form>
examples of what you are talking about with three choices can be found here
ht
hth