3 Column Ready Theme (even spacing -- 1st level only)
<mvt:assign name="l.helpfultotal" value="miva_array_elements( l.settings:readytheme:navigationitems )" />
<mvt:assign name="l.helpfulthird" value="ceil(l.helpfultotal / 3)" />
<mvt:assign name="l.helpfulcount" value="0" />
<mvt:foreach iterator="navigationitem" array="readytheme:navigationitems">
<mvt:if expr="l.helpfulcount EQ 0 OR l.helpfulcount EQ l.helpfulthird OR l.helpfulcount EQ (l.helpfulthird * 2)">
<div class="column large-one-third medium-one-third small-half x-small-half whole">
<ul class="navigation-set single-navigation-column">
</mvt:if>
<li>&mvt:navigationitem:link;</li>
<mvt:assign name="l.helpfulcount" value="l.helpfulcount + 1" />
<mvt:if expr="l.helpfulcount EQ l.helpfulthird OR l.helpfulcount EQ (l.helpfulthird * 2) OR l.helpfulcount EQ l.helpfultotal">
</ul>
</div>
</mvt:if>
</mvt:foreach>