Reputation: 3558
This is the page I am working on: http://lorenpaulcaplin.com/jve/illustrations.html
My client wants the images to be center aligned instead of being lined up by their left sides.
If this were text I'd just use text-align:center
, but life is not that easy. Based on this question, I tried this:
ul.small-block-grid-3 img {
display:block;
margin:auto;
}
but no luck:(
Upvotes: 4
Views: 5547
Reputation: 62773
Add a text-align:center
to your li
elements.
Something like this:
.fairy > ul > li {
text-align:center;
}
Upvotes: 2