Why here left and right are not beside but below?
<section className="section-top-overflow">
<div className="container">
<div className="row">
<div className={"col-lg-12"}>
<div className="col">left</div>
<div className="col">right</div>
</div>
</div>
</div>
</section>
Found here this info:
Remove the col-12 as Bootstrap 4 requires a new row for columns to be nested.
bootstrap 3 to bootstrap 4 cols no longer horizontally aligned
I try to recreate this contact form here, and there are nesting column into column. Does it mean they do not use Bootstrap 4 but 3? How can I check which one is used?