I have some list of vendors in my site, those vendors list are created manually.
Those links are displaying in one single column div
code
<div class="rte">
<ul class="vendor-list block-grid three-up mobile one-up">
<li class="vendor-list-item" style="font-size:20px">
<a href="/collections/{{ product_vendor | handleize }}">
{{ product_vendor }}
</a>
</li>
</ul>
</div>
But i wanted to display this list in 3 columns.
For example, if i have 30 vendors then show 10 vendors for each column.