Millisecond Forums

Space between options in Checkboxes

https://forums.millisecond.com/Topic15997.aspx

By Konstantina - 4/12/2015

Hello,

Is there a way to control the space between the options in a checkbox element? I am trying to achieve having the boxes with no space in between, in a row.

Thank you in advance!
Konstantina
By Dave - 4/12/2015

No. You can somewhat control the spacing via the element's /fontstyle, but you won't be able to have *no* space between the individual checkboxes.

<checkboxes mycheckboxes>
/ options = ("~n","~n","~n","~n","~n")
/ optionvalues = ("1", "2","3","4","5")
/ orientation = horizontal
/ fontstyle = ("Arial", 1%)
</checkboxes>

<surveypage mypage>
/ questions = [1=mycheckboxes]
</surveypage>
By Konstantina - 4/12/2015

Thanks Dave!