some more custom controls and info here too: http:Q_20828322.html
Main Topics
Browse All Topicsthe question tells it all...
i have a country list/menu in my website for which i want to change the colors for background, scrollbars and border
i have the following style which works fine with the other textfields and textareas but not with list/menu items
.colouredscrollbars{
scrollbar-base-color : #5F5F5F;
scrollbar-face-color : #999999;
scrollbar-arrow-color :#5F5F5F;
scrollbar-track-color : #5F5F5F;
background-color: #444444;
border: 1px solid #1E1E1E;
font-family: Tahoma;
font-size: 10px;
font-weight: normal;
color: #CCCCCC;
}
is it possible to do this?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
some more custom controls and info here too: http:Q_20828322.html
To clarify, you can alter the fonts / background / border colours for input, textarea and button elements.
Select elements are different, but can be replaced with customised dropdowns, such as:
<html>
<head>
<style type="text/css">
div.select_replace{positio
input.text_select{border:1
button.icon_select{float:l
ul.select_list{position:ab
ul.select_list li{padding:0; margin:0}
ul.select_list li a{font-family:Verdana; color:#D50000; text-decoration:none; display:block; width:100%; padding:3px}
ul.select_list li a:hover{background-color:#
</style>
<script type="text/javascript">
function showList(obj){
var objList = obj.nextSibling;
objList.style.top = (parseInt(obj.offsetHeight
objList.style.display = 'block';
}
function selectOption(obj){
var objText = obj.parentNode.parentNode.
var strVal = obj.firstChild.nodeValue;
objText.value = strVal;
obj.parentNode.parentNode.
}
</script>
</head>
<body>
<div class="select_replace">
<input id="fld_select" class="text_select" type="text" readonly="readonly" /><button class="icon_select" onclick="showList(this)">V
<li><a href="#" onclick="selectOption(this
<li><a href="#" onclick="selectOption(this
<li><a href="#" onclick="selectOption(this
</ul>
</div>
</body>
</html>
Business Accounts
Answer for Membership
by: VirusMinusPosted on 2007-02-06 at 14:48:14ID: 18480498
i assume u mean a select / droplist. if so the short answer is no.
e.com/Web/ Web_Langua ges/CSS/ Q_ 20758661.h tml
CSS styling for form elements, is limited and a lot of it is overruled by OS and browser defaults.
People have made custom controls with scripts and styled them, but they will be a pain to maintain.
also see: http://www.experts-exchang