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 Reply To: [Solved] Captain tell me how to align this wrapper in center

#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;
}