Any way to stop resize on a textarea?

Hello there :wave:, is there a way of stopping resize on a text area?

Hi Gabriele,
One way to do is through the following css

textarea {
resize: none;
}

In Plasmic Studio, you can add the css using Embed CSS package. If you want to target a specific textarea then you can do the following

  1. Add Embed CSS package
  2. Add an id to a specific textarea using HTML attribute section
  3. Apply the above css using id selector