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.

demo here.

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

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -