I'm currently working on a project that involves two columns.
<div class="col-6">
<p>
Here is some text for the paragraph.
</p>
</div>
<div class="col-6 d-none d-sm-block">
<img class="goal-f1 rounded" src="img/rubbish.jpg">
</div>
The column containing the image is hidden on small screens. Is there a way for the other column to expand and take up the entire row in its place when the image column is hidden?
Currently, there is just a large gap where the image used to be located.