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

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;
} 
}
Write a Reply...
You need to Login to view replies.