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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Quick Input type=File + CSS Question..Background color not workin

Status
Not open for further replies.

RhythmAddict112

Programmer
Jun 17, 2004
625
US
Hi all....
Through a little googling I've found how to change the style of an <input type=file> element. My trouble is I need to change the background color of the button and the background-color property seems to have no effect. I'm not sure if I'm doing something wrong, or this just isn't valid - does someone have a workaround for this? My code follows...


Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.bupload { 
BORDER-RIGHT: #FFFFFF 1px solid;
BORDER-TOP: #FFFFFF 1px solid;
BORDER-LEFT: #FFFFFF 1px solid;
WIDTH: 69px;
BORDER-BOTTOM: #FFFFFF 1px solid;
FONT-WEIGHT: bold! important;
FONT-SIZE: 11px! important;
FONT-FAMILY: sans-serif, Helvetica, Arial;
BACKGROUND-COLOR: #9795bf! important
}
</style>
</head>
<body>
<FORM method="post" encType="multipart/form-data" >
<INPUT type="File" name="File1" ID="File1" class=bupload size=-1>
</form>
</body>
</html>

All hail the INTERWEB!
 

This may not be possible. This would be a browser and operating system dependant thing (whether you can or cannot set it).

Dan


[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 
Hmm...I was afraid of that answer. I am in a controlled Intranet environment, with IE v6.0.x - if that is any help.

At this point the only plausible option I know of is using an image... :-/

All hail the INTERWEB!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top