In Tro Basic HTML Fonts Images Links Marquees Backgrounds Tables FieldSet, TextArea Lists CSS Cursors Divs Page Anchors I Frame Image Maps Music Flash E mail Form Pop Ups Drop Down Menu - MySpace Edits - Center Profile Hide Extended Network Hide Details Section Hide Last Login Hide Contact Box Hide Your Friends Hide General Info. Hide Comments Hide Friends/Comments Hide Search Form Move Contact Box Remove MySpace Links Remove URL Box Resize Comment Images Reverse Com & Friends Scrollable Comments Dot Comers Grey Matter Mega Book Tag Board PHP FTP CHMOD CPanel Scripts Paint Shop Pro Animation Shop Vector Cheat Radio Blog My Space HTML Tester Help Links Color Chart Get-Hosting.net DaRicanBoi.com OrlandoSotoJr.com SoDamnCocky.com MySpace.com/S.D.C. |
Drop Down MenuHere is a way you can organize some content. Add as many options as you like. First option will be the one that shows. Just click the drop down menu to view its contents. Exmaple: Code: <form name="form1"> <select name="menu1"> <option>My Likes:</option> <option>Movies</option> <option>Video Games</option> <option>Music</option> <option>Designing</option> <option>Cuddleing</option> </select></form> You can add CSS to your Drop Down Menu. Change the background, font, color, size etc. Exmaple: Code: <form name="form2"> <select name="menu2" style="font-size:10px;color:#990000;font-family:arial;background-color:#E3E3E3;border:#000000 1px solid;"> <option>My Likes:</option> <option>Movies</option> <option>Video Games</option> <option>Music</option> <option>Designing</option> <option>Cuddleing</option> </select></form> You can use this Drop Down Menu for your links as well. Exmaple: When you click on a name. It will open a new window to that URL. Code: <form name="form3"> <select style="font-size:10px;color:#012853;font-family:arial;background-color:#E3E3E3;" name="menu3" onChange="window.open(document.form3.menu3.options[document.form3.menu3.selectedIndex].value);"> <option>Drop Down:</option> <option value="http://daricanboi.com/">DaRicanBoi</option> <option value="http://jukie-fied.com/">Jukie</option> <option value="http://hybrid-function.net/">Farrakhan</option> <option value="http://delicious-designz.net/">Cubana</option> <option value="http://www.nerdy-sanchez.com/">Catalina</option> <option value="http://deuce89.com/">Lismani</option> </select></form> Quick hint. If you are going to use more then one Drop Down Menu, make sure you change the form and menu name for each one. |