Reputation: 77
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
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