I recently switched from Foundation to Bootstrap and it seems great, but I am unable to figure out why the offset isn't working for me here. Would anyone be able to help? Note that I'm using Bootstrap 4.
HTML:
<div class="row">
<div class="col-lg-3 col-lg-offset-1">
<img src="img/logo.png" alt="Logo description">
</div>
<div class="col-lg-7">
<p>Some text goes here...</p>
</div>
</div>
Thank you all in advance for your help.