I am using Twitter Bootstrap to play around with the responsive side of a website. I am having a problem however with the smaller widths where the collapsed menu is going ov
In my case, it worked changing this
for this
and editing my css from this:
.wrapper {
min-height: 100%;
height: auto !important;
margin: 0 auto -30px;
padding: 70px 0 30px 0px;
}
to this:
.wrapper {
min-height: 100%;
height: auto !important;
margin: 0 auto -30px;
padding: 0 0 30px 0px; /* new padding */
}