I am currently working on building a layout with Bootstrap 4.6, and I am facing an issue with centering the header, columns/cards, and buttons on the page width while the parent container is left-aligned and not full width.
Additionally, I need help with getting the SVG image (the dots in the image I am trying to replicate) to appear correctly.
Here is an image of what I currently have (the image spans the full width of a 1920x1080 screen): https://i.sstatic.net/nvvQ4.png
And here is how I am aiming for it to look like approximately (this was created using TailWind CSS by a third party): https://i.sstatic.net/tb3L5.png
.related-box {
width: 88% !important;
}
.related-box::before {
content: '';
...
}
<div class="container-fluid pt-3 pl-0 pr-0">
<div class="container-fluid related-box bg-ceda-light float-left">
...
</div>
</div>