Input Form Submit & IE Issue

Hi,

I am the owner of 1TM.com and on our homepage we have a CSS client login with dashed borders. How do I get rid of the dashes on the submit image?

Also in IE the input feilds are showing too long unlike all the other browsers, any fix to this?

Thank you!

Hope your all have a great weekend

You could change

input {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px dashed #333333;
  color: #000000;
  font-weight: bold;
}

to

input[COLOR="Red"][type="text"][/COLOR] {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px dashed #333333;
  color: #000000;
  font-weight: bold;
}

so that it won’t apply to the type=“submit” input.

For older browsers, you could instead put a special class on the text inputs and add the dotted lines that way instead.

Also in IE …

There are at least 4 different browsers by that name. You have to be more specific.

That worked. Its Internet Explorer Version 8.0.6001.19702 lol

Thank you!