I am encountering an issue with the bootstrap classes not functioning as expected.
This is a combination of templates. The problematic sections are
<div class="col-md-8">
and <div class="col-md-4" style="margin: 0;">
<main role="main" class="container-flex" style="margin-left:60px; overflow:hidden;">
<div class="row">
<div class="col-md-8">
...
</div>
<div class="col-md-4">
<div class="content-section">
...
</div>
</div>
</div>
.content-section {
margin: 0;
background: rgb(255, 255, 255);
padding: 10px 20px;
border: 1px solid rgb(212, 210, 210);
border-radius: 3px;
margin-bottom: 20px;
word-wrap: break-word;
overflow: hidden;
}
An interesting observation is that adding a comment miraculously fixes the issue.
https://i.sstatic.net/fF9CE.png
https://i.sstatic.net/heTdW.png
To view the complete code, click here
I have exhausted all my troubleshooting techniques, but the solution still eludes me.