I'm facing an issue where I have 3 images with different widths and need to keep them intact until they reach a certain width, let's say 767px. Once they hit that width, each image will take up the full width of 767px until the screen size is xs. Sorry if this sentence construction is confusing.
Here's a snippet of the code:
<div class= "about-content">
<ul>
<li><a href="">
<div class = "inner-content">
<img src="img/about/1.jpg" class="img-fluid">
</div>
</a></li>
<li><a href="">
<div class = "inner-content">
<img src="img/about/2.jpg" class="img-fluid">
<div class = "overlay-content">
<h4>Book a Test Drive <i class = "fa fa-chevron-circle-right"></i></h4>
</div>
</div>
</a></li>
<li><a href=""><img src="img/about/3.jpg" class="img-fluid"></a></li>
</ul>
<ul>
<li><a href=""><img src="img/about/4.jpg"></a></li>
<li><a href=""><img src="img/about/5.jpg"></a></li>
<li><a href=""><img src="img/about/6.jpg"></a></li>
</ul>
</div>