I used the header example from Bootstrap's documents here: https://getbootstrap.com/docs/5.3/examples/headers/#
The code I have is:
<div class="container fixed-top bg-white">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4">
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<svg class="bi me-2" width="40" height="32"><use xlink:href="#bootstrap"/></svg>
<span class="fs-4">Portfolio</span>
</a>
<ul class="nav nav-pills">
<li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Home</a></li>
<li class="nav-item"><a href="#" class="nav-link">Features</a></li>
<li class="nav-item"><a href="#" class="nav-link">Pricing</a></li>
<li class="nav-item"><a href="#" class="nav-link">FAQs</a></li>
<li class="nav-item"><a href="#" class="nav-link">About</a></li>
</ul>
</header>
</div>
Here is what the navbar currently looks like: https://i.sstatic.net/oC2le.jpg
How can I make the top and bottom spacing equal? https://i.sstatic.net/8gBWt.jpg
Thank you,