Forums

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

Home Forums CSS Add a row of images with caption Re: Add a row of images with caption

#137678
daffy58
Participant

Hi,

As I saw your mock up, I guess this would be css for you.

#content ul {
list-style: none;
overflow:hidden
}
#content ul li {
float:left;
color: red;
text-align:center;
margin:10px 0 0 10px
}

you adjust the margin/padding for each box for your own desire ;)

hope this helps.