I came across a Bootstrap mega menu code online that works well overall, but I am facing an issue where the mega menu does not remain centered and keeps floating to the left of the screen. Here is the initial code snippet:
<nav class="navbar navbar-light bg-light navbar-expand-lg" id="myNavbar">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#mainNav" aria-controls="mainNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a href="#" class="navbar-brand">Navbar Brand</a>
<div class="collapse navbar-collapse" id="mainNav">
<ul class="navbar-nav ml-auto nav-fill">
(Menu items)
</ul>
</div>
</nav>
The alignment issue only occurs when there are more than 3 parent items in the menu. I require 5 parent items to be centered, but so far my attempts at finding a solution online have been unsuccessful.