How to remove extra whitespace around body from Zurb Foundation

daemonAD

I'm using the Foundation framework for my website and there's an extra white-space around the the whole body (the gutter). To remove the gutter I've tried:

  1. *{margin:0;padding:0;}
  2. body{margin:0;padding:0;}
  3. Downloading custom Foundation with gutter set to 0

None of which has worked out for me. What can be done to remove that extra white-space?

Here's the screenshot with gutter highlighted with red

denmch

This is most likely not a margin issue but a max-width issue. Using DevTools you'll probably find that your .row class has a max-width of 62.5rem, which I think is standard. (I work on a site that has a modified width of 72.5rem.)

I think it's a good idea to maintain some version of this limitation if you have normal page content that people will have to actually read on large screens. But you can safely override it where you want 100% width.

You can do so by adding a class that overrides the default max-width and selects the relevant element with sufficient specificity in your style sheet.

Alternatively, you can refrain from using class .row on outer containers that you want to span the page. This allows you the option of putting rows within. This way you could, for example, have your teal background span the page but keep the content constrained and aligned with normal grid-based content below.

You can read more about the Foundation grid here, including how to customize row width via SASS variables if you're into that sort of thing.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to remove extra whitespace from image in opencv?

From Dev

How to remove margin from zurb foundation text-field

From Dev

how to remove extra whitespace surronding video in bootstrap

From Dev

CKeditor remove extra whitespace

From Dev

how to remove whitespace from explode

From Dev

how to remove whitespace from explode

From Dev

Remove whitespace around text in div

From Dev

How to manually install Zurb Foundation?

From Dev

AngularJS directive is adding an extra whitespace character, how can I remove it?

From Dev

Wrap content and remove extra whitespace?

From Dev

How to remove the extra space around the image inside a div

From Dev

How to remove extra borders around the toolbar after adding margin?

From Dev

How to remove whitespace from string in Ruby

From Dev

How to remove whitespace from end of string in Python?

From Dev

How to remove whitespace from a div/container

From Dev

How to remove whitespace from an image in OpenCV?

From Dev

Python: How to remove whitespace from number in a string

From Dev

How to remove whitespace from specifc line?

From Dev

How to remove leading whitespace from a string in Bash

From Dev

How to remove whitespace from above text in a div

From Dev

Foundation Zurb

From Dev

How to use kaminari theme for zurb foundation

From Dev

how to make zurb foundation print as they show in the browser

From Dev

Zurb's Foundation 'Joyride': how to start/programmatically

From Dev

How to add a border to Zurb Foundation grid columns?

From Dev

How to submit form data with Zurb Foundation

From Dev

How to invert, inverse, hover the icons in zurb foundation?

From Dev

Zurb Foundation 5, how to upgrade javascripts with compass?

From Dev

How split the grid of Zurb Foundation with custom percentage?

Related Related

  1. 1

    How to remove extra whitespace from image in opencv?

  2. 2

    How to remove margin from zurb foundation text-field

  3. 3

    how to remove extra whitespace surronding video in bootstrap

  4. 4

    CKeditor remove extra whitespace

  5. 5

    how to remove whitespace from explode

  6. 6

    how to remove whitespace from explode

  7. 7

    Remove whitespace around text in div

  8. 8

    How to manually install Zurb Foundation?

  9. 9

    AngularJS directive is adding an extra whitespace character, how can I remove it?

  10. 10

    Wrap content and remove extra whitespace?

  11. 11

    How to remove the extra space around the image inside a div

  12. 12

    How to remove extra borders around the toolbar after adding margin?

  13. 13

    How to remove whitespace from string in Ruby

  14. 14

    How to remove whitespace from end of string in Python?

  15. 15

    How to remove whitespace from a div/container

  16. 16

    How to remove whitespace from an image in OpenCV?

  17. 17

    Python: How to remove whitespace from number in a string

  18. 18

    How to remove whitespace from specifc line?

  19. 19

    How to remove leading whitespace from a string in Bash

  20. 20

    How to remove whitespace from above text in a div

  21. 21

    Foundation Zurb

  22. 22

    How to use kaminari theme for zurb foundation

  23. 23

    how to make zurb foundation print as they show in the browser

  24. 24

    Zurb's Foundation 'Joyride': how to start/programmatically

  25. 25

    How to add a border to Zurb Foundation grid columns?

  26. 26

    How to submit form data with Zurb Foundation

  27. 27

    How to invert, inverse, hover the icons in zurb foundation?

  28. 28

    Zurb Foundation 5, how to upgrade javascripts with compass?

  29. 29

    How split the grid of Zurb Foundation with custom percentage?

HotTag

Archive