aijosh
Member
I need to place elements side by side.
1 | 5
2 | 6
3 | 7
4 | 8
Option 1:
change element ordering in fabrik form's list to 1,5,2,6,3,7,4,8 and use float:left;
Issue:
when on mobile, the ordering doesn't make sense since its shown 1s
1
5
2
6
3
7
4
8
1 | 5
2 | 6
3 | 7
4 | 8
HTML:
<div class="row-fluid">
<div class="span6">
element 1,2,3 & 4
</div>
<div class="span6">
element 5,6,7 & 8
</div>
</div>
Option 1:
change element ordering in fabrik form's list to 1,5,2,6,3,7,4,8 and use float:left;
Issue:
when on mobile, the ordering doesn't make sense since its shown 1s
1
5
2
6
3
7
4
8
Option 2:
create custom template (allow elements to be automatically generated in foreach)
Issue:
the elements re generated in 'foreach'. I wouldn't know how to break them into two columns
create custom template (allow elements to be automatically generated in foreach)
Issue:
the elements re generated in 'foreach'. I wouldn't know how to break them into two columns
Option 3:
create custom template( manually generate elements)
Issue:
was already through with this when I found out the elements didn't generate all the necessary content required for the form to work. no id's e.t.c. form's javascript also not working.
Any suggestion?
create custom template( manually generate elements)
Issue:
was already through with this when I found out the elements didn't generate all the necessary content required for the form to work. no id's e.t.c. form's javascript also not working.
Any suggestion?
Last edited: