Page 1 of 1

File upload field on Carousel: full width binding?

Posted: Sat Nov 06, 2021 9:20 pm
by MUDJ
Hi!
at the moment I am implementing a fairly complex multipage form and I have inserted the file upload field. The problem I'm having is that I don't understand how to make it "NOT adaptive and NOT responsive" to the layout grid. Is it possible that the option in the upload field properties is missing?
Thanks in advance for reply!
Greets!

Re: File upload field on Carousel: full width binding?

Posted: Sat Nov 06, 2021 10:56 pm
by crispy68
There is nothing in the object itself to make it not full width.

However, you can do the following:

1. Right click on the object --> Click Object HTML --> Custom Style
2. Add the following CSS

Code: Select all

max-width:250px;
Change the width to your liking. This will limit how big it gets but still allows it to shrink if necessary based on the available space.

Re: File upload field on Carousel: full width binding?

Posted: Tue Nov 09, 2021 9:58 pm
by MUDJ
Thanks!!!