I've just installed skeleton framework to experience it. i'm using 16 columns layout and i see that i have margins on left and right when i test it on iphone.
someone has an idea?
thanks
I've just installed skeleton framework to experience it. i'm using 16 columns layout and i see that i have margins on left and right when i test it on iphone.
someone has an idea?
thanks
You can set the column margins for phones and other devices using media queries in the CSS.
Skeleton uses margin-left:10px, and margin-right:10px on the columns by default so....
An Typical example of setting the margins using Skeleton for an iPhone 5 would be:
@media (max-width: 1136px) { .column, .columns {margin:0;} }