Skip to content

Commit

Permalink
adding gridspan helper
Browse files Browse the repository at this point in the history
  • Loading branch information
trob authored Jul 8, 2017
1 parent 610f8dc commit cc728a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
if (!$element->hidden) :?>
<div class="<?php echo $element->span;?>">
<div class="row-fluid">
<div class="span4"><em><?php echo $element->label_raw ?></em></div>
<div class="span8"><?php echo $element->element;?></div>
<div class="<?php echo FabrikHelperHTML::getGridSpan(4); ?>"><em><?php echo $element->label_raw ?></em></div>
<div class="<?php echo FabrikHelperHTML::getGridSpan(8); ?>"><?php echo $element->element;?></div>
</div>
</div>

Expand Down

0 comments on commit cc728a2

Please sign in to comment.