I recently purchased this template and am currently editing it. It utilizes bootstrap, however, I seem to be encountering an issue with the sizing of an image on different monitors. I attempted to add:
.responsive {width: auto; height: auto;}
to resolve the issue, but unfortunately, it did not yield any results. Is there anything else I can try? PS. I will include a snippet of the HTML/CSS that I am working with.
<div class="col-lg-6 right-side order-1 order-lg-2">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade active show responsivo" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
<img src="images/macbook_1.png" alt="Equipe Quest Group" class="container_resp">
</div>
<div class="tab-pane fade **responsive**" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
<img src="images/macbook_2.png" alt="Quest Logo" class="container_resp">
</div>
</div>