How can set comment box have same size?

Viewed 21

I have a problem with css in my web here: https://blog.lnlgr.com/en/best-mothers-day-gifts/ Can i made these comment box have the same size: [enter image description here][1] [1]: https://i.stack.imgur.com/ILJxO.png I tried but it's only valid in computer screen.

1 Answers

if you are asking comment box below comment i.e. textarea

go to this line,

<textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>

and remove below css max-width: 790px (for this css .comment-form-comment textarea);

Related