html - how to remove the scroll and adjust the adaptability? -
please remove scroll appears when window's width 992px < width < 1006px (for convenience, brought in header width).
here settings bootstrap: http://getbootstrap.com/customize/?id=fbddbcf1a87480d1bf27#media-queries-breakpoints important me distance between .bg_blue_innerpo continued 66px, , width .page-header 992px.
your issue lies in breakpoint medium (992) , small (768):
@media (min-width: 992px) .container { width: 1006px; } @media (min-width: 768px) .container { width: 786px; }
your container is, in essence, larger breakpoint (width of screen) causing scrollbar.
is there reason why have changed default breakpoint structure?
Comments
Post a Comment