Blue form background in IE
In http://www.milburndentonmoore.com/newsite/#contact, the sign-up form has a blue gradient 开发者_开发百科background. Its supposed to be gray like the rest of the page. It's looking fine in Chrome and FF.
The form div is not linked, so I don't think there's any issue with borders.
Any ideas?
Thanks
Your form container has inline style
<div class="ss-form-container" style="... filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#777, endColorstr=#777); ...">
This works in IE only and this is cause of gradient (tested with ie dev tools)
In styles.css the background-color for the textareas are set to blue:
/* ========================== Form Elements Styles ========================== */
input, textarea {
background-color: #424051;
Change the background color to the hex value you'd like, for grey you might like #333
Also to get rid of the dark outlines delete these:
box-shadow:inset 0 0 5px #110f1c;
-moz-box-shadow:inset 0 0 5px #110f1c;
-webkit-box-shadow:inset 0 0 5px #110f1c;
Try this in your style.css on line 206
input, textarea {background: rgba(111, 111, 111, 0.5);}
styles.css (line 206) seems to be the issue
input, textarea {
background-color: #424051;
box-shadow: 0 0 5px #110F1C inset;
color: #F5F2EB;
}
精彩评论