Gallery caption position
-
I’m working on http://andrew-hayward.com/projects/ and the gallery caption text doesn’t look great center aligned.
I just wondered if there was any CSS edit that I use to justify or left align the text?
Thanks :)
The blog I need help with is: (visible only to logged in users)
-
This would specifically target this, and only this, gallery as I’ve done it by ID. You can try left to see what that looks like. The padding is so that all the text doesn’t run together.
.galleryid-34 dd.wp-caption-text { padding-left: 15px; padding-right: 15px; text-align: justify; }This would target all 3-column galleries (if you are going to have more of them in other places).
.gallery-columns-3 dd.wp-caption-text { padding-left: 15px; padding-right: 15px; text-align: justify; } -
-
- The topic ‘Gallery caption position’ is closed to new replies.