If you're looking to stack two elements on one side of the page using Bootstrap, there are plenty of tutorials available online that can guide you through the process. However, here's a simple example to achieve this effect:
.container {
display: flex;
color: white;
font-weight: bold;
font-family: Sans-Serif;
}
.left {
width: 50%;
background-color: red;
text-align: left;
}
.right {
width: 50%;
text-align: right;
}
.inner-right-1 {
background-color: blue;
}
.inner-right-2 {
background-color: green;
}
<div class="container">
<div class="left">LEFT DIV</div>
<div class="right">
<div class="inner-right-1">TOP</div>
<div class="inner-right-2">BOTTOM</div>
</div>
</div>
In this setup, the main structure includes two divs (left and right) each occupying a certain amount of space on the page. Within one of these divs, you can place two inner divs stacked vertically, which could house your navigation bars or any other content.