Currently facing issues with Bootstrap 4 as my columns are not stacking on top of each other in mobile view. I have two col-sm-6 within each row. Any guidance on how to resolve this would be greatly appreciated, thank you!
Feel free to visit the website at
/*--Overview Headers--*/
h3.overview-header{
// CSS styling
}
h3.overview-header2{
// CSS styling
}
h3.overview-header3{
// CSS styling
}
/*--Overview Sub Headers--*/
h4{
// CSS styling
}
/*--Overview Paragraphs--*/
p.lead2{
// CSS styling
}
p.lead3{
// CSS styling
}
/*--Overview Sections--*/
section#overview1{
// CSS styling
}
section#overview2{
// CSS styling
}
section#overview3{
// CSS styling
}
.overview-wrapper{
// CSS styling
}
<!-- Bootstrap CSS Link -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Overview Section One -->
<section id="overview1">
<div class="container-fluid">
<!-- Row with col-sm-6 -->
</div>
</section>
<!-- Overview Section Two -->
<section id="overview2">
<div class="container-fluid">
<!-- Row with col-sm-6 -->
</div>
</section>
<!-- Overview Section Three -->
<section id="overview3">
<div class="container-fluid">
<!-- Row with col-sm-6 -->
</div>
</section>