I would like to know if there is possible to split a text in two parts.
On my website I have a product description (500-1000 words) and I would like to display it like so:
<div class="text-col">
<?php echo nl2br($col1); ?>
</div>
<div class="text-col">
<?php echo nl2br($col2); ?>
</div>
Something like this?