Is it possible to remove the scroll bar from a list box in a form? I will size the box to show all options and would rather not have the bar appear.
For context, I am giving the submitter several vertical lists of choices, of which they can choose multiple items. In the past I have used a stack of check boxes and labels in a fixed form, but I am now trying to set up the form in a layout grid and cannot find a way to make a vertical stack that has two items (box and label) in each row and place them in a single column. If there's another way to accomplish this other than a list box, that would be great too.
Thank you!
List Box Scroll Bar
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
- Pablo
- Posts: 23616
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: List Box Scroll Bar
I assume you are referring to the combobox?
1. Right click the object
2. Select Object HTML -> Custom Style
3. Add this code:
1. Right click the object
2. Select Object HTML -> Custom Style
3. Add this code:
Code: Select all
overflow:hidden;
-
-
- Posts: 30
- Joined: Tue Aug 04, 2015 3:29 pm
Re: List Box Scroll Bar
Thank You, Sir!. And, yes, the Listbox type of the Combobox.