Reputation: 1094
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
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
Reputation: 14590
Remove the overflow: hidden
from the .no-container
class
Then you need to fix the slider position.
Upvotes: 0
Reputation: 8481
Removing overflow hidden removes the whitespace on the left, however the feature image is off.
.no-container {
overflow: hidden;
}
Upvotes: 0