Hi Alan,
You're a bit thin on details, but I'll assume a few things. Firstly I'm guessing the form is not a popup - it's a content body (well duh
).
You mention limiting the height of the content body, but I think you're wanting to limit the height of the form itself, maybe have the content of the form scrollable from everything else?
first some back-story - the content-body doesn't have a height. It's just a container which will grow to accommodate whatever is inside it. So if you want to limit the size of the form, it's best to start with the form itself.
Are you familiar with creating a custom.css file for your app? I hope so (if not, let me know, and I'll point you at resources for that.)
So what you want to do is create a class there, say
.form-1{
max-height: 250px;
overflow: scroll;
}
then you can apply this style to the form itself, not to the content-body.
Cheers
Bruce