michaelw90
michaelw90

Reputation: 533

How can I remove mysterious white-space?

This is a very puzzling problem for me.

If you visit this site on Safari there'll be added an extra 4-500px scrollable whitespace. Obviously it's not supposed to be like this, but I can't seem to grasp what creates this space :S

Inspecting reveals nothing to me, as it seems to be a part of the body, but there's no content in it, so why would it create the space?

If anyone could be able to help me that'd be great :)

Upvotes: 3

Views: 272

Answers (2)

Chris
Chris

Reputation: 435

Try this for your body on the CSS

body{
    height: auto;
}

Upvotes: 1

user3375577
user3375577

Reputation:

Add to your .shiftnav-wrap class

height: auto;

Or add to your wrapper id

#wrapper {
  height: auto;
}

On your style.css

Upvotes: 3

Related Questions