user3346696
user3346696

Reputation: 169

css issue: extra white space on the right of all my content

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

Answers (1)

dfsq
dfsq

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

Related Questions