Header height (or padding) change

Hi there!

Could you please advice (or maybe give some link to previous answered question) how to decrease height of header. I want to make header transparent (i’ve already found your answer about this topic) so there will be a lot of space (or maybe you can just tell how to decrease header padding - this will do the trick).

Thank you very much.

It depends how far you want to push it.

This code will reduce top navigation while still making to look clean and not hard pressed together.

.navbar > .container .navbar-brand {
    margin: 0;
}
.navbar-nav > li > a {
    line-height: 20px;
    padding: 4px 10px;
}

Thank you very much, I’ll try to keep it clean and tight :slight_smile: