Reputation: 436
I bought this theme, i customized it, edited some code and now apparently i can scroll a lot horizontally. I already opened a ticket to the theme's owner but it's probably going to take more than 24 hours and i do not have those 24 hours.
This is the website. Try scrolling to right.
I tried adding width: 100% to different divs but without succes.
Thanks
Upvotes: 1
Views: 1396
Reputation: 1846
padding: 0 40px 40px;
*/ ) or line.content-wrap{padding: 0 40px 40px;}
width: 960px;
*/ ) or delete line.Upvotes: 1
Reputation: 52397
There are two elements causing it:
.nav_wrap
has a margin-left
of 840px
-- that's causing some.
The other is caused by the 40px
padding on #content-wrap
Upvotes: 0
Reputation: 3113
Its not an bug from WordPress, its an error by your Stylesheet/CSS.
#content-wrap {
padding: 0px 40px 40px 40px;
}
If you remove this, you can see, the Horizontal scrolling will be disbaled. Your #content-wrap has more width than html/body.
Upvotes: 0