Reputation: 3057
QUESTION - How can I make the List buttons on the right, match in size (or just fill the Nav Bar)
I have uploaded the site to here so you may see the code.
( I removed my previous question as it was badly worded and I did not have code to show, sorry )
Upvotes: 0
Views: 76
Reputation: 2476
Add this code to your css file or in inline block
@media (min-width: 979px){
.navbar .nav li { line-height: 45px;}
}
Upvotes: 1