Results 1 to 4 of 4

Thread: Centering a web layout

  1. #1
    Join Date
    Feb 2009
    Posts
    18
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Centering a web layout

    http://serenadelyts.com/
    How do I center this layout?

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    Open your image editing program and center the image. Then adjust your pixels for all your absolute positioned elements.

  3. #3
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Smile

    Code:
    background-position:bottom center;
    add that code on css

  4. #4
    Join Date
    Jul 2009
    Location
    Lithuania
    Posts
    25
    Thanks
    9
    Thanked 0 Times in 0 Posts

    Default

    This is really simple:
    On your container write:
    #container {
    margin:0 auto;
    }
    and in body

    body {
    text-align: center;
    }


    Thats all :P

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •