Issue
I'm having a problem about loading 2 sections in Bootstrap and as you can see here in jsfiddle there is a little white space between the page header and the top menu... So how to remove that so the both sections will stick together... Not that I also tried margin-top:0; padding-top:0;
but they didn't work !
Solution
The bootstrap .navbar
has a default margin-bottom
of 50px
. To remove that, add a new style which overrides it.
.navbar {
margin-bottom: 0;
}
Answered By - Vestride
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.