Currently using Bootstrap 4.4.1.
Experimented with a 2-column layout: Image on the left and Text on the right.
<section class="resume-section-first p-3 p-lg-5 d-flex align-items-center" id="about">
<div class="w-100">
<div class="block">
<div class="row">
<div class="w-50">
<div class="span4">
<img class="img-left w-100" src="/img/profile-lg.jpg"/>
</div>
</div>
<div class="w-50 p-5">
<div class="span4">
<div class="content">
<div class="content-heading">
<span>Software Engineer</span>
<h2>Test Title</h2><br>
</div>
<p>
Experienced Software Engineer in developing Web Application, as well as building robust RESTful API.
Expert in System Architecture Design, Development and Maintenance of Software systems.
Equipped with a diverse and promising skill-set required in the market.
Proficient in various platforms and languages. Able to effectively self-manage during independent
projects, as well as collaborate as part of productive team.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
Issue arises when viewing on small screens; looking to display Full Column for Image and Text. Attempted to use w-md-100 or w-xs-100 without success.
Seeking guidance on resolving this problem.