user38208
user38208

Reputation: 1094

White space appearing on side of website

I have a website and from out of nowhere, whitespace started appearing on the left hand side of the page. I just can't figure out what the issue is?

Please help. Here is the link the the website

Upvotes: 0

Views: 77

Answers (4)

codingbadger
codingbadger

Reputation: 43974

You need to remove this:

.no-container {
    overflow: hidden;
}

And then adjust the settings for the Revolution Slider Wordpress plugin. It looks like you have added an offset value as it automatically adds a left style to the element. Also set the width to 100% it is currently set to 1663px and it should be ok.

Upvotes: 0

michelem
michelem

Reputation: 14590

Remove the overflow: hidden from the .no-container class Then you need to fix the slider position.

Upvotes: 0

Ben Crowhurst
Ben Crowhurst

Reputation: 8481

Removing overflow hidden removes the whitespace on the left, however the feature image is off.

.no-container {
    overflow: hidden;
}

Upvotes: 0

ralph.m
ralph.m

Reputation: 14345

Try this:

.home #primary {
    clear: both;
}

Upvotes: 1

Related Questions