jack
jack

Reputation: 77

Bootstrap3 navbar issue

I want to change the height of the bootstrap navbar. But I only want to change it for desktop screens. I do not want to change it for any screens below 700 px. Please advice where to change and what to change.

Upvotes: 0

Views: 27

Answers (1)

tradez
tradez

Reputation: 49

@media(min-width: 700px) {
  .navbar{
     min-height: XXpx;
  }
}

Put this is a custom CSS file. Replace 'XX' with whatever height you desire.

Upvotes: 1

Related Questions