File upload field on Carousel: full width binding?

Issues related to forms.
Post Reply
MUDJ
 
 
Posts: 81
Joined: Sun Jan 10, 2010 2:22 pm

File upload field on Carousel: full width binding?

Post 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!
User avatar
crispy68
 
 
Posts: 2907
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

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

Post 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.
MUDJ
 
 
Posts: 81
Joined: Sun Jan 10, 2010 2:22 pm

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

Post by MUDJ »

Thanks!!!
Post Reply