I'm having an issue with aligning the columns in my testimonials section. Despite using col-md-5 for each column, they are not lining up side by side as expected. Here is the code I am currently using:
<section id="testimonials">
<div class="container">
<h1 class="title text-center">What our clients say</h1>
<div id="row">
<div class="col-md-5 testimonials">
<p>We specialize in Web Development, Digital Marketing, and Graphic Designing - your one-stop shop for all technical needs.</p>
<img src="images/user1.jpg">
<p class="user-details"><b>Angelina Green</b><br>Co-founder at xyz</p>
</div>
<div class="col-md-5 testimonials">
<p>We specialize in Web Development, Digital Marketing, and Graphic Designing - your one-stop shop for all technical needs.</p>
</div>
</div>
Here is the CSS associated with this section:
#testimonials
{
margin: 100px 0px;
}
.testimonials
{
border-left: 4px solid #7b1798;
margin-top: 50px;
margin-bottom: 50px;
}
.testimonials img
{
height: 60px;
width: 60px;
border-radius: 50%;
margin: 0px 10px;
}
.user-details
{
display: inline-block;
font-size: 12px;
}