Currently, I am in the process of learning Foundation 5 and working on an app that utilizes a 1170 grid system. The app has 70px columns and 30px gutters (which equals to 1170 when calculated as 70 * 12 + 30 * 11). However, after setting the default values in my foundation _settings.scss file:
$row-width: rem-calc(1170); $column-gutter: rem-calc(30); $total-columns: 12;
I noticed that instead of having 70px wide columns, each column is actually 97px wide. Can someone help me understand how this calculation is done? Am I missing any variables in the settings? Thank you in advance for your assistance.
Upon further inspection, I discovered that in Chrome, a 68px column is generated with 15px padding on the left and right. Is there a way to remove the padding on the left and right sides of the container?