http://serenadelyts.com/
How do I center this layout?
http://serenadelyts.com/
How do I center this layout?
Open your image editing program and center the image. Then adjust your pixels for all your absolute positioned elements.
add that code on cssCode:background-position:bottom center;
This is really simple:
On your container write:
#container {
margin:0 auto;
}
and in body
body {
text-align: center;
}
Thats all :P
Bookmarks