View Full Version : PullDown Menus?


amber2403
09-10-2005, 12:08 AM
I don't really know where I'm supposed to post this so I just took a stab in the dark.

Is there anyone that can tell me how to customies (font styels and colorize) a navigational pulldown menu? This is the code I have.

<script language="JavaScript">
<!-- Hide from old browsers


function surfto(form) {
var myindex=form.select1.selectedIndex
if (form.select1.options[myindex].value != "0") {
location=form.select1.options[myindex].value;}
}
//-->
</SCRIPT>
<FORM NAME="form1">
<SELECT NAME="select1" onChange="surfto(this.form)">
<OPTION SELECTED VALUE="0">--- Archived Blog Entries ---
<OPTION VALUE="index.html">&nbsp; &nbsp; -- 2005 Entries --
<OPTION VALUE="index.html">&nbsp; &nbsp; &nbsp; &nbsp; May
<OPTION VALUE="index.html">&nbsp; &nbsp; &nbsp; &nbsp; April
<OPTION VALUE="index.html">&nbsp; &nbsp; &nbsp; &nbsp; March
<OPTION VALUE="index.html">&nbsp; &nbsp; &nbsp; &nbsp; Feburary
<OPTION VALUE="index.html">&nbsp; &nbsp; &nbsp; &nbsp; January
</SELECT>
</FORM>

And if you are still confused by what I'm asking, look here http://www.joieluckclub.com/media.html .... On the left site, you'll see a pull down menu, and if u click it, you'll see that the bg is the same color as the site bg and that the text is small and colorized.

Can anyone tell me how to get my script like that?

amber2403
09-10-2005, 01:14 AM
nevermind, i figured it out. thanks anyway! :)