My goal is to create a layout similar to the one displayed in the linked image.
https://i.stack.imgur.com/7DSE9.jpg
Currently, I am using Bootstrap 3 and my HTML markup looks like this:
<body class="gray-bg">
<section class="white-bg">
<div class="row">
<div class="col-lg-12">
<h2 class="text-center">Title</h2>
<img class="feature-image" src="./images/image.jpg" alt="">
</div>
</div>
</section>
<section>
<div class="row">
<div class="col-lg-12">
<p>Body text...</p>
</div>
</div>
</section>
</body>
I am curious about what CSS modifications need to be made for .feature-image to achieve the desired layout. Any suggestions are greatly appreciated!
Thank you!