davey_b_ Posted April 21, 2008 Share Posted April 21, 2008 Can you add CSS to a makeDropDownList function - if so, how? I want to be able to change the height/font of the dropdown menu. Quote Link to comment https://forums.phpfreaks.com/topic/102116-makedropdownlist-css/ Share on other sites More sharing options...
DarkWater Posted April 21, 2008 Share Posted April 21, 2008 You need to provide some example code. I'm not sure if CSS can really be applied to "select" inputs though. >_> Quote Link to comment https://forums.phpfreaks.com/topic/102116-makedropdownlist-css/#findComment-522739 Share on other sites More sharing options...
Barand Posted April 21, 2008 Share Posted April 21, 2008 <html> <head> <meta name="generator" content="PhpED Version 4.5 (Build 4513)"> <title>sample</title> <meta name="author" content="Barand"> <style type='text/css'> #myselect { background-color: #FF0; color: #00F; font-size: 18pt; } </style> </head> <body> <select id='myselect' name='myselect'> <option>AAA</option> <option>BBB</option> <option>CCC</option> </select> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/102116-makedropdownlist-css/#findComment-522746 Share on other sites More sharing options...
davey_b_ Posted April 21, 2008 Author Share Posted April 21, 2008 Yeah, i can do that uniformly by adding SELECT{ height:16px; margin:0; BACKGROUND-COLOR : #fff; .... But I just wanted to affect 1 select menu. Quote Link to comment https://forums.phpfreaks.com/topic/102116-makedropdownlist-css/#findComment-522849 Share on other sites More sharing options...
Barand Posted April 21, 2008 Share Posted April 21, 2008 Then use the code I posted Quote Link to comment https://forums.phpfreaks.com/topic/102116-makedropdownlist-css/#findComment-522855 Share on other sites More sharing options...
davey_b_ Posted April 22, 2008 Author Share Posted April 22, 2008 but my dropdown list is created with the following code... <?php echo makeDropDownList_search("ddlCategory", $catlist, $ddlCategory, true, "", $properties, $behaviors); ?> Quote Link to comment https://forums.phpfreaks.com/topic/102116-makedropdownlist-css/#findComment-523869 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.