Hi! I don't know if I am just missing something or what, but I can't seem to figure out how to center the website on the screen. I have tried margin:auto on most everything. When I do a percent padding on the container, that works, but it makes the screen have a bottom scroll.
Let me know if you need more information.
Thanks in advance!!
Comments
Comment #1
brandy.brown commentedOK I finally figured it out.
The solution should anyone else have this problem:
body{
overflow-x:hidden;
}
#container{
padding-left: 10%;
width: 90%;
}
Maybe not a perfect solution, but it works great for me.