mirabelleza
Member
Posted 5 months ago #
I love this plugin, but I would like to center the feature images only. They full images, but are too large and it squeezes the text to the right, so it looks really funny.
I don't want to decrease the image size, just want to center it so that the text goes down underneath the image.
Any suggestions will be greatly appreciated.
http://wordpress.org/extend/plugins/genesis-grid-loop/
Since Genesis doesn't allow us to change the classes on the image (yet!) you'll need to write some custom CSS. This should work:
.feature img.alignleft {
display: block;
float: none;
margin: 0 auto 20px;
}
I just posted a patch to Genesis that allows us to control the classes applied to the images. So hopefully in Genesis 2.0 this will be easier to do.
mirabelleza
Member
Posted 5 months ago #
Thank you so much! That worked perfectly.