Reputation: 163
I'm doing this proyect: http://jimenarguelles.mx. There is an odd situation with the overflow.
Please scroll the website in horizontal, that should not happen at all.
the class="sidebar"
is position:absolute
right:0
what do you think? Do I need to re-structure my css or html?
Upvotes: 0
Views: 5441
Reputation: 21050
Try adding this onto 'body':
body {
overflow-x:hidden;
position:relative;
}
Upvotes: 4