how can i move my li from col-1 to col-2?. if li is display more then 2time.
my html structure here
<div class="col-1">
<ul>
<li>text1</li>
<li>text2</li>
<li>text3</li>
<li>text4</li>
</ul>
</div>
i have get this type of structure if li is display more then 2time.
<div class="col-1">
<ul>
<li>text1</li>
<li>text2</li>
</ul>
</div>
<div class="col-2">
<ul>
<li>text3</li>
<li>text4</li>
</ul>
</div>