Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change the bordercolor of select boxes on IE5+

Status
Not open for further replies.

sknyppy

Programmer
May 14, 1999
137
US
I want to change the bordercolor of selection boxes from the standard dark grey to black, is this possible? I seem to be able to modify other properties of the selection box except this one... I'm only developing for IE5+.

Thanks.
Dave
 
Try this code :

<style>
select {
background-color: 000000;
color: FFFFFF;}
</style>

<form>
<select>
<option>...</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
</form> Regards

Big Dave


** If I am wrong I am sorry, but i'm only trying to help!! **

 
I think this came up a few months ago and lots of people came to the conclusion that it can't be done. You can't change the arrow color or style.

I wish you could too.
User_timtom.jpg
[sub]WASN'T FIT ENOUGH FOR THE POLICE FORCE[/sub]​
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top