Jack
Jack

Reputation: 3057

Bootstrap - Make list Icons size match my Logo's Size

enter image description here

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.

Website.

( I removed my previous question as it was badly worded and I did not have code to show, sorry )

Upvotes: 0

Views: 76

Answers (1)

Nagarjun
Nagarjun

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

Related Questions