NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Programming
Reload this Page css dropdown box.

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.

Advanced Search


Closed Thread
 
LinkBack Thread Tools
Old 12-13-2005, 03:34 PM THREAD STARTER               #1 (permalink)
NamePros Regular
Join Date: Jul 2005
Location: U.S.A.
Posts: 655
Coolprogram has a spectacular aura aboutCoolprogram has a spectacular aura about
 



css dropdown box.


I would like to know how to make a css dropdown box.
Thanks,
-Coolprogram
Coolprogram is offline  
Old 12-14-2005, 04:16 PM   #2 (permalink)
mch
NamePros Regular
Join Date: Nov 2005
Location: EU
Posts: 248
mch is on a distinguished road
 



More details please. Do you want to style the <select> element? That is, to change the color/font/border/etc of the dropdown list?
mch is offline  
Old 12-14-2005, 09:47 PM   #3 (permalink)
Senior Member
 
dongan's Avatar
Join Date: Nov 2005
Location: www.mercuryminds.com
Posts: 2,044
dongan is a splendid one to beholddongan is a splendid one to beholddongan is a splendid one to beholddongan is a splendid one to beholddongan is a splendid one to beholddongan is a splendid one to beholddongan is a splendid one to behold
 



Originally Posted by mch
More details please. Do you want to style the <select> element? That is, to change the color/font/border/etc of the dropdown list?
I think he wants a script for drop down menu and the layouts (colors, fonts, background-image/color) should be styled at CSS.
????: NamePros.com http://www.namepros.com/programming/147861-css-dropdown-box.html

any idea? i am also looking for the one.
dongan is offline  
Old 12-14-2005, 10:26 PM   #4 (permalink)
DNOA Member
Join Date: May 2004
Posts: 5,040
mholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant futuremholt has a brilliant future
 


Autism Marrow Donor Program 9/11/01 :: Never Forget Multiple Sclerosis Adoption Alzheimer's Lou Gehrig's Disease (ALS)
www.DynamicDrive.com has a nice selection of CSS menus.
mholt is offline  
Old 12-14-2005, 11:02 PM   #5 (permalink)
Senior Member
 
Epic's Avatar
Join Date: Sep 2005
Posts: 3,779
Epic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond reputeEpic has a reputation beyond repute
 



Here's a nice tutorial for one:

http://www.alistapart.com/articles/horizdropdowns
Epic is offline  
Old 12-15-2005, 07:27 AM   #6 (permalink)
Senior Member
 
biggie's Avatar
Join Date: May 2003
Location: GreenFriendly.com
Posts: 3,318
biggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud ofbiggie has much to be proud of
 



Hi

here's one i'm planning on using




<html>
<head>
<style>
body{font-family:arial;}
table{font-size:80%;background:black}
a{color:black;text-decoration:none;font:bold}
a:hover{color:#606060}
td.menu{background:lightblue}
table.menu
{
font-size:100%;
position:absolute;
visibility:hidden;
}
</style>
<script type="text/javascript">
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="v isible"
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="h idden"
}
</script>
</head>

<body>
<h3>Drop down menu</h3>
<table width="100%">
<tr bgcolor="#FF8080">
<td onmouseover="showmenu('tutorials')" onmouseout="hidemenu('tutorials')">
<a href="/default.asp">Tutorials</a><br />
<table class="menu" id="tutorials" width="120">
<tr><td class="menu"><a href="/html/default.asp">HTML</a></td></tr>
<tr><td class="menu"><a href="/xhtml/default.asp">XHTML</a></td></tr>
<tr><td class="menu"><a href="/css/default.asp">CSS</a></td></tr>
<tr><td class="menu"><a href="/xml/default.asp">XML</a></td></tr>
<tr><td class="menu"><a href="/xsl/default.asp">XSL</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('scripting')" onmouseout="hidemenu('scripting')">
<a href="/default.asp">Scripting</a><br />
<table class="menu" id="scripting" width="120">
<tr><td class="menu"><a href="/js/default.asp">JavaScript</a></td></tr>
<tr><td class="menu"><a href="/vbscript/default.asp">VBScript</a></td></tr>
<tr><td class="menu"><a href="default.asp">DHTML</a></td></tr>
<tr><td class="menu"><a href="/asp/default.asp">ASP</a></td></tr>
<tr><td class="menu"><a href="/ado/default.asp">ADO</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('validation')" onmouseout="hidemenu('validation')">
<a href="/site/site_validate.asp">Validation</a><br />
<table class="menu" id="validation" width="120">
<tr><td class="menu"><a href="/site/site_validate.asp">Validate HTML</a></td></tr>
????: NamePros.com http://www.namepros.com/showthread.php?t=147861
<tr><td class="menu"><a href="/site/site_validate.asp">Validate XHTML</a></td></tr>
<tr><td class="menu"><a href="/site/site_validate.asp">Validate CSS</a></td></tr>
????: NamePros.com http://www.namepros.com/showthread.php?t=147861
<tr><td class="menu"><a href="/site/site_validate.asp">Validate XML</a></td></tr>
<tr><td class="menu"><a href="/site/site_validate.asp">Validate WML</a></td></tr>
</table>
</td>
</tr>
</table>
<p>Mouse over these options to see the drop down menus</p>
</body>

</html>
__________________
www.urlpick.com...Premium Domain Names
PMM.org * UMM.org * 96.net * 150.org * WPD.net * OPV.net * MrQ.net * 455.info * QN1.com * QG1.com * IZ1.com * OVL.net * VJ4.com * SVC.net * MVN.org * SOP.net * SVH.org * OPO.net * QFM.net * WEW.org * MFP.org * NEV.org * UCE.org * SXE.org
biggie is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
MSN scammer!! offers you to be a moderator, don't give personal data! Jim_Westergren Warnings & Alerts 54 07-05-2006 07:35 PM
Googlism - What does google think of you? deadserious The Break Room 55 12-15-2005 10:09 AM
CSS Dropdown menus {simple} where can I get 'em? static1635 Website Development 8 07-28-2005 04:09 AM
Xbox 360 hype andriegel Domain Name Discussion 5 05-18-2005 12:46 PM

Liquid Web Smart Servers  
All times are GMT -7. The time now is 02:18 PM.

Managed Web Hosting by Liquid Web
Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger