Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Captain tell me how to align this wrapper in center

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #172892
    geedi
    Participant

    need this wrapper to be aligned center tried everything but doesn’t work
    Link To problem page

    div.AG_album_wrap
    {
         display:block;
         margin-bottom:20px;
         padding-bottom:5px;
    #172893
    Paulie_D
    Member

    It is aligned center…kind of…but it’s 100% wide.

    You could throw a width on it and then use margin:auto

    div.AG_album_wrap {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 5px;
    width: 90%;
    margin: 0 auto;
    }
    

    BUT what I think you really want is for the images to be centered…not the wrapping div. Am i right?

    #172896
    Paulie_D
    Member

    If so…you need to set the links to display:inline-block

    a.AG_album_thumb {
    /*display: block;*/
    /* float: left; */
    margin: 0 10px 10px;
    padding: 4px;
    border: 1px solid silver;
    display: inline-block;
    }
    

    and then center them

    div.AG_album_wrap {
        text-align: center;
    }
    
    #172960
    geedi
    Participant

    Thanks Captian yeah second helped greatly

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.