View Full Version : Dropdown menu?


MrsJackSparrow
03-06-2004, 10:49 PM
Okay, I know...I should know how to do this, as I've one it before - but I don't remember how to do it! lol. So, I need to know how to change the font, font size, and color on the menu, as well as the background color when it drops. Here's my source code - and I thought I had it right, but I guess not. :(

*</head>
<style type="text/css">
background: #000000;
font-family: value;1 Verdana
color: #FF6666;
border-style: value;0
border-color: #000000;
border-width: valuepx;0
</style>

<body bgcolor="#000000">

<p align="center">&nbsp;</p>

<p align="center"><img
src="http://img14.photobucket.com/albums/v42/therumisgone/Random%20stuff/mainimage.jpg"></p>

<p align="center"><form ACTION=URI>
<select name=lissamenu3
onchange="location.href=(form.lissamenu3.options[form.lissamenu3.selectedIndex].value)">
<option value="0"style="background-color:#000000;">Yo ^^! A Pirate's Life For Me!</option>
<option value="jackbio.html"> Captain Jack Sparrow</option>
<option value="contactme.html"> Contact</option>
<option value="pics.html">Photo Gallery</option>
<option value="affil.html">Affilates</option>
<option value="joined.html">Joined</option>
<option value="scripts.html">Scripts</option>
</select>
</form>

MaGiCSuN
03-06-2004, 11:00 PM
<style type="text/css">
option, select {
background-color: #000000;
font-family: verdana;
color: #FF6666;
border-style: solid;
border-color: #000000;
border-width: 0;}
</style>

should be before the </head> tag. To change font size add font-size: #px; to the codes above :)

Love,
Mirna

MrsJackSparrow
03-06-2004, 11:06 PM
It worked! :) Thank you. ;) Now, I remember how to do it. LOL. I guess that happens alot when you stop making/updating websites for VERY long periods of time.