Morning, hopefully a quick fix. I need to stretch the menu items to fill the entire space of the navbar, tried multiple variations with no joy. Thanks in advance, Mark
Please may I have a response
Hi ramsey1971, You can use the following CSS code:
@media (min-width: 1200px) { .navbar-expand-lg .navbar-nav { gap: 70px; } } @media (min-width: 992px) and (max-width: 1199px) { .navbar-expand-lg .navbar-nav { gap: 45px; } }
Super, that's done the trick, thanks.