Image Radio Button --- Margins or Space between Images
- MaidCrewAsked on April 26, 2017 at 06:38 PM
Hello...
Could I get some help with CSS for reducing the margin or space between images. I would like to get about a 3px space between the images. Is this possible?
Thanks.
- JotForm SupportKevin_GAnswered on April 26, 2017 at 08:23 PM
You could try injecting the following CSS code:
ul#images_button_container li {
padding-right: 0px;
margin-right: 3px;
padding-left: 0px;
margin-left: 0px;
}
To inject the code to the widget, click on the wizard icon and go to the Custom CSS tab:
This should be the result:
Hope this helps.
- MaidCrewAnswered on April 26, 2017 at 09:13 PM
Worked Great! Thanks very much!