css - How can i remove large white areas of mobile site? -


i rid of large gaps of wasted white space between 2 shaded lines pages of mobile site.

im using #pagewrapper { margin-top: 30px; } spacing on desktop version, maybe not ideal way? asked delete it, messed spacing desktop view.

my site http://jeffreydowellphotography.com (im sorry if frowned upon post site link, dont know how show otherwise) i'm noob.

you need apply mobile styling within media query:

@media screen , (max-width: 800px) {     #pagewrapper {         margin: 0;         padding: 0 20px;     }     .sqs-layout .sqs-row .sqs-block:last-child {         padding-bottom: 0;     } } 

Comments

Popular posts from this blog

ios - UICollectionView Self Sizing Cells with Auto Layout -

node.js - ldapjs - write after end error -

DOM Manipulation in Wordpress (and elsewhere) using php -