I\'m using foundation 3 to build a responsive website but I want to have the Footer and Navigation background width to occupy the entire width? I have named my rows as
Just override the max-width property as max-width: initial;, for example,
max-width
max-width: initial;
.fullWidth { width: 100%; margin-left: auto; margin-right: auto; max-width: initial; }
this works for me :)