Issue
I'm currently trying to help out a friend of mine who's just out of college and wants a personal site in the hopes it will help her find a job.
I used wordpress twentythirteen as a base and changed a few things. After a while I noticed that I could scroll the site to the right. the last thing I've added is the sticky footer but I can't find anything in there that might've caused this weird empty space.
I've tried to use the firefox inspector tool too but i can't find what is causing it.
Solution
Just add overflow-x:hidden
to your body
and html
.
html, body, #wrap {
height: 100%;
overflow-x: hidden;
}
Answered By - knocked loose
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.