• Solved
  • How do I make a custom field textarea a fixed size in the subscribe module?

Hi,
I have managed to make the regular fields i.e. email, name wider to suit my website but i cannot make the custom textarea fields bigger. I need to change the width and height. I can see in chrome inspect tools the following when I manually drag and resize the field:

<textarea name="customField[3]" rows="50" cols="50" style="margin: 0px; width: 401px; height: 125px;">My article (up to 500 words)</textarea>

However, I can't find the correct class/selector for doing this in css. I have tried so far:

td.acyfield_3.acyfield_textarea {width: 401px; height:125px;}
.acyfield_3.acyfield_textarea {width: 401px; height:125px;}
.acyfield_3 {width: 401px; height:125px;}

Any suggestions would be greatly appreciated as currently the module looks bad all squashed up.

Kind regards

Mel

Hi,

Try adding this to your custom css:

.acym_module_form .onefield textarea {
width: 401px;
height: 125px;
}

Hi @jvstratum,

Thank you so much and for the fast response - that was it!

Most appreciated

Mel

Nice! Enjoy your Acymailing.