Can you help me with a layout challenge I'm facing? I have two columns set up like this:
<div class="row">
<div class="col-6">
hello
</div>
<div class="col-6">
hello
</div>
</div>
However, I want the "hello" texts to be right next to each other on medium (md) screens or smaller. In other words, I want them to appear as if there are no columns being used.
Do you know how I can achieve this? I tried using the .no-gutters
class, but it only minimizes the padding slightly. I also attempted setting the padding and margin of both columns to zero, but that had minimal effect as well. Any suggestions?