Good morning,
I've been trying to align a set of 8 fields into 2 rows of 4, side by side. In following the Laserfiche help file here: https://www.laserfiche.com/support/webhelp/LaserficheForms/9.1/en-us/Forms/Default.htm#FormsCSS.htm#CommonselectorsinForms I found out that I could do something like
#q1, #q2, #q3, #q4 {display: inline-block; width: 25%; vertical-align:top;}
#q5, #q6, #q7, #q8 {display: inline-block; width: 25%; vertical-align:top;}
However, #q4 is hidden using Field Rules, and it only shows until #q3 is clicked (#q3 is a radio button). This causes my layout to display as:
FIRST ROW: #q1, #q2, #q3, #q5
SECOND ROW: #q6, #q7, #q8
Then when I click on #q3 all aligns as:
FIRST ROW: #q1, #q2, #q3, #q4
SECOND ROW: #q5, #q6, #q7, #q8
What I'm looking for is that at the beginning it should look like:
FIRST ROW: #q1, #q2, #q3
SECOND ROW: #q5, #q6, #q7, #q8
And when #q3 is clicked, it display as:
FIRST ROW: #q1, #q2, #q3, #q4
SECOND ROW: #q5, #q6, #q7, #q8
Any suggestions/additional information?
Thank you,
Raul Gonzalez