html - Extra Space on Right Side CSS -


i seem getting space on right side of page. i'm using zurb's foundation/wordpress this.

you can check website here: http://tinyurl.com/dypgvgp

any ideas?

first of don't see space on right in firefox. here's general pointers.

if remove limit on x-overflow, can see stuff going on on right. example, page goes on quite bit on right side. might want limit width of main container.

here's how disable:

html, body {     font-size: 100%;     /* overflow-x: hidden; */ } 

this drawing border:

*, *:before, *:after {     -moz-box-sizing: border-box; } 

this giving each row margin left , right:

.row .row {     margin: 0 -0.9375em;     max-width: none;     width: auto; } 

hope helps some.


Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

javascript - Clean way to programmatically use CSS transitions from JS? -

android - send complex objects as post php java -