Try to use a separate stylesheet that is loaded after the foundation.css where the content looks something like this:
@media only screen {
.row .columns, .row .column {
padding-left: 10px; /* change the values to anything that you want */
padding-right: 10px;
}
}
I put it in the @media only screen since for printing you might not want to have it display with the extra padding.
Example of this here
If you want to use this extra padding while printing you have to use the following:
.row .columns, .row .column {
padding-left: 10px !important; /* change the values to anything that you want */
padding-right: 10px !important;
}
You have to use the important part since there's a @media only screen in the default foundation.css that will override your values.
EDIT
Just use another separate class for the columns that you want the extra padding applied to.
Example:
.extra-padding {
padding-left: 10px !important; /* change the values to anything that you want */
padding-right: 10px !important;
}
Example of this here
$column-gutter
is, as I can't see it having any effect either. We must be missing a trick here. – Repast