Bootstrap hiding page content with named anchor -
i'm using bootstrap 3.3.4 , whenever use named anchor jump section on faq page top part of page (everything above anchor) gets hidden/ignored/removed.
i not using fixed header. see issue here clicking on question under "questions answered" button.
since have margin-bottom: -9999px;
on col-sm-9
, col-sm-3
them same height, set overflow: hidden;
on .container
.
instead setting overflow
.container
, set first parent (.page
).
.page{ overflow: hidden; }
then wont affect header , footer.
Comments
Post a Comment