html - Bootstrap Grid allows Vertical Scroll -
i have designed "coming soon" template has 1 little issue. have discover bootstrap grid in template allows "vertical scroll" , doesn't make sense me. have noticed in first part <!-- part1 --> , not know how prevent it. have applied css overflow-x: hidden (deleted demonstration), still want fix it. scrolling pressed mouse wheel (to right) still possible, please try.
thanks in advance.
i think mean horizontal scroll. issue don't have .container
element in part 1 causes .row
(with default margin of -15px on sides) grow outside of window, can either add container element markup or add css remove negative margins:
#home > .row { margin-left: 0; margin-right: 0; }
sidenote: may want remove left padding countdown list ul.cd
have center correctly
Comments
Post a Comment