I currently have two large columns that are stacked vertically on top of one another. I want them to be side by side, like | 1 | 2 |, so that the user can view both columns simultaneously. I am seeking tips or suggestions on how to resolve this issue. While I can't post all of my code here, I will provide the main divs. There are multiple tabs that switch between pages for the user. It was working fine before, but now the right column seems to have dropped below the left column.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a4c6cbcbd0d7d0d6c5d4e4908a928a95">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<div class="container-fluid" style="max-width: 95%;">
<ul class="nav nav-tabs" id="allTabs" role="tablist">
<li class="nav-item"><a class="nav-link" id="homePage" href="#" onclick="alertFunction()">EBSP Home</a></li>
<li class="nav-item">
<button type="button" class="nav-link" id="tv" onClick="openTab(event, 'tv_systems')">FM Broadcast</button>
</li>
<li class="nav-item">
<button type="button" class="nav-link" id="transline" onClick="openTab(event, 'transmission')"> Transmission Line & Power Analysis</button>
</li>
<li class="nav-item">
<button type="button" class="nav-link" id="print" onClick="openTab(event, 'print_pdf')">Print</button>
</li>
</ul>
<!-- tv systems tab -->
<form target="_blank" method="post">
<div class="tabContent" id="tv_systems">
<div class="row">
<div class="col-sm">
<!-- main left column -->
<div class="row align-items-start">
</div>
</div>
<div class="col-sm">
<!-- Second Column right -->
</div>
</div>
</div>
<div id="pageValidation" class="errorText"></div>
</form>
</div>