Hello everyone, I have a little dilemma. I have a css that controls a transparent gif and it works fine in FF, but in IE, I get a white border.
Below is my CSS for the button.
#sendbutton
{
position: absolute;
background: url(images/send_button97.gif) no-repeat;
border:none;
font-size: 13px;
text-align: center;
background-color:none;
color:#FFFFFF;
left: 680px;
top: 480px;
width: 168px;
height: 68px;
-moz-outline-style:none;
-moz-focus-inner:none;
filter:alpha(opacity=60);
-moz-opacity:0.1;
-khtml-opacity: 0.1;
opacity: 1.0;
}
How do I correct the IE version?