hey!
i’ve got a drop down menu / form that i’m using for navigation.
is it possible to change the hieght, length, text size, text color, and arrow color of the form? here’s the code i’m using so far:
the javascript:
(SCRIPT LANGUAGE="JavaScript")
(!--
function LinkUp()
{
var number = document.DropDown.DDlinks.selectedIndex;
location.href = document.DropDown.DDlinks.options[number].value;
}
//--)
(/script)
here’s the css:
.gray { background-color:#BDBCBC;}
and here’s the html:
(form name="DropDown" method="get")
(select name="DDlinks" onChange="LinkUp(this.form)")
(option selected class="gray")//... Navigate (/option)
(option value="start.htm")START(/option)
(option value="visuals.htm")projects(/option)
(option value="411.htm")411(/option)
(option value="links.htm")LINKS(/option)
(/select)
(/form>
so… the changes i’d like to make…are they possible? any suggestions? and… can anybody tell me what i’m doing wrong in this forum… i can NEVER get html to show up… :block: so i always have to substitute my brackets for “(” and “)”…
thanks!!!