Drop Down Menu

Copy and paste the following code where you want it to be shown in your Myspace Edit Profile or website.

This Is A Drop Down Menu


The Code:

<select name="select">
<option selected>Title Goes Here </option>
<option>Your Text One</option>
<option>Your Text Two</option>
<option>Your Text Three</option>
</select>



Changing The Color Of A Drop Down Menu

After the "option" tag you will need to add "style" attributes to each.
Examples below are highlighted.

<select name="select">
<option selected style="background-color:CCFF00;>Title Goes Here </option>
<option style="background-color:CCFF00;">Your Text One</option>
<option style="background-color:CCFF00;">Your Text Two</option>
<option style="background-color:CCFF00;">Your Text Three</option>
</select>


End Result

You can change the "option" to be a different color.