Posts: 25
Threads: 8
Joined: Jul 2021
How does one change the comment text input box so that it can't be dragged or re-sized by the user?
Thanks.
Posts: 2,895
Threads: 59
Joined: Jun 2010
You can do this using CSS:
Code:
.cmtx_comment_field {
resize: none;
}
Have
you completed
the interview?
Posts: 25
Threads: 8
Joined: Jul 2021
Thanks Steven!