Quote:
Originally Posted by dansgalaxy
also:
i think theres a way (cant remember off top of my head) that you can make the default border on input boxes 0 or the color the same as background so it will blend in as if its normal text and not like its a text box.
Dan
|
yep !
in css, specify:
Code:
.date{
border:0px;
background-color: transparent;
}
That should do the trick to make the field transparent.
Also, in the input, add the word "disabled", to prevent user to being able to select it.
Code:
<INPUT disabled class="date" TYPE="text" NAME="face" SIZE=11 VALUE ="....Initializing....">
__________________
Listen to the ducky: "This is awesome!!!"
|