I'm having trouble making my image stretch to the full width, all the way to the right corner while still being responsive. The code is integrated into WordPress and you can find the image in the class membershipImgBox. How can I increase the size of my image?
Here is the code:
.membershipbox {
height: 100%;
}
.img-fluid {
max-width: 100%;
height: auto;
}
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<!-- for icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="84e6ebebf0f7f0f6e5f4a9ede7ebeaf7c4b5aab0aab5">[email protected]</a>/font/bootstrap-icons.css" />
</head>
<section class="deliveringSection ">
<div class="container">
<div class="row">
<div class="col-lg-6 col-xs-12 img-box-2" data-aos="fade-up" data-aos-easing="ease" data-aos-duration="2000">
<div id="img-2" class="membershipImgBox">
<img src="https://via.placeholder.com/987/FF0000/FFFFFF?Text=Down.com%20C/O%20https://placeholder.com/" class="img-fluid d-block mb-5 mb-lg-0 mx-auto" alt="" />
</div>
</div>
<div class="col-lg-6 col-xs-12 order-lg-first" data-aos="fade-up" data-aos-easing="ease" data-aos-duration="2000">
<div class="deliveringContent">
<div class="sectionHeading" data-aos="fade-up" data-aos-easing="ease" data-aos-duration="2000">
<h2>
Delivering quality projects to
</h2>
</div>
<div class="sectionHeadingTwo" data-aos="fade-up" data-aos-easing="ease" data-aos-duration="2000">
<h2><b>World Class </b></h2>
<h2>Standards</h2>
<div class="about-border"></div>
</div>
<p>We work around three important elements of our business to create world-class innovative interior design solutions to meet our clients’ functional & aesthetic requirements providing unique tailored space solutions. We integrate the client’s
brand and business strategy, placing great emphasis on the brand’s values and aspirations to bring projects to fruition, taking our strong working relationship to the next level..</p>
<a href="" class="btn btn-primary btnWeight"> about us </a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>