Firefox is ignoring the row size I have and because of that a row of radio buttons is underneath the textarea.
Can someone help me get them the same size?
CSS:
#contact-inputmessage {
position:absolute;
left:190px;
top:30px;
width:200px;
}
Page:
<div id="contact-inputmessage" style="font-size: 14px"> Comments<textarea NAME='Message' MAXLENGTH='1000' class='blkbars' rows='5' cols='26'></textarea></div>
I have screen shots of the page, one in FF and the other IE
I found a fix but it disabled my error checking which I will fix by making it a class
textarea#styled {
width: 232px;
height: 78px;
}
Thanks in advance for your help!