Re: changing size of textarea in edit page
Reply #1 –
@franklin the following should help, image below for reference.
Do this for Width
1. Click on Page Design.
2. Select the page you want to work on.
3. Click on the Main Page View's Column(Direct parent in the tree, like in the image below)
4. Select the ColumnWidthClass you want, note that col-md-12 is the max-width class which deals with the percentage of its containing <div></div>. col-md-12 means %100.
Do this for height
5. Click on App Custom CSS and add the following and click okay the preview.
If you are using the HTML editor in textarea use this 👇
.note-editing-area{ /* use this to target textarea that has UseHtmlEditor set to True */
height: 200px;
}
and this 👇 if you want to apply the height to the textarea with no HTML editor
textarea#ctrl-name{/* use this to target textarea that has UseHtmlEditor set to False */
height: 200px;
}
Note: Replace the "ctrl-name" in the second code with "ctrl-{name of the field you are working on}" and replace "200" with any number you want the height to be.