Closed (fixed)
Project:
Genesis
Version:
7.x-1.1
Component:
Genesis SUBTHEME
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
28 Apr 2013 at 20:07 UTC
Updated:
11 May 2013 at 23:27 UTC
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.