My comment form has a gray border around it (inside the blue border that it SHOULD have) that I can't get rid of. A search of my CSS and Comments CSS for the color code reveals that code does not exist in my style sheets.
The color code is
(#828177)
I haven't a clue where it is being called from, so I can't get rid of it. I even looked at the WP default style sheets and it's not in there either.
Firebug ties the gray border to
fieldset class="fieldone"
and
#commentform
font-size:0.9em;
text-align:left;
}
The style for fieldone is
#commentform fieldset.comment fieldset.fieldone {
float: left;
width: 96%;
}
I've tried adding
border: none;
to the above style, but it makes no difference.
Further, when I'm logged in, there is no comment form, just a text input box - which is as it should be. However, this doesn't display the gray border, so clearly the issue is limited to the comment form itself.
Specifically, I believe it is related to fieldone. I believe this because when I change the contents of field one (i.e. move the comment text input box into its own field, called fieldtwo), the gray border doesn't surround it. It remains limited to the contents of fieldone.
I'm using WP 2.71. I'm not using any plugins that should affect the comment box, only the comments themselves. These are: WP Comment Remix, WP AJAX Edit Comments, and WP reCAPTCHA.
Can anyone assist?