I'm currently working on a WordPress project and I've been attempting to create a smooth text flow between columns using the Bootstrap framework.
What I'm aiming for is to have the same story seamlessly transition from one column to another, similar to how newspapers are laid out. While I've come across examples of achieving this with multi-column CSS alone, I'd prefer to implement it using Bootstrap.
I believe that each column needs to have a specific height so that the story can smoothly shift from one column to the next.
Below is an excerpt of my code:
<div class=' col-sm-12 col-xs-12'>
<?php get_template_part ('template-parts/content/content', 'image');?>
</div>
<article class=' col-sm-6 col-xs-12'>
<?php get_template_part ('template-parts/content/content', 'pack');?>
</article>
<article class=' col-sm-6 col-xs-12'>
</article>
<?php
Thank you in advance for all your assistance and guidance.