Reputation: 169
I'm posting my issue here because I can't find the problem by my own.
I'm building this website: http://www.karlienfabre.be/basmicro , at this time it's possible to scroll horizontally because there is a lot of white space at the right. I do not want this white space, I don't want that you can scroll horizontally.
I think it is something with the section nav
If there is a css-hero who can help me...
Thanks in advance!
Upvotes: 1
Views: 44
Reputation: 193311
The problem is with section#twitter
slider. It's very wide that's why it expands the body width too. Try this simple fix:
#twitter .container {
overflow: hidden;
}
Upvotes: 1