Center NextGen Gallery in Wordpress

user2057593 picture user2057593 · Mar 2, 2013 · Viewed 7.5k times · Source

I am using a NextGen Gallery on my Wordpress site, but the gallery box does not respect the lefthand margin of the rest of the page (that is, all other images, text, etc. is has some sort of indentation or padding, but the NextGen Gallery floats all the way to the left). I would like to prevent it from overriding this padding, or at least to float to the center. I've tried editing the css in several places, but I may be editing the wrong class, or something. An example of the gallery is near the bottom of the page at http://www.montereyhighdrama.com/multimedia/the-marriage-of-figaro-2010/ Thanks.

Answer

lydia picture lydia · Nov 1, 2013

Don't know about making it respect left padding, but this does work to make the entire set of thumbnails to float to the center.

.ngg-galleryoverview {
text-align:center;
}

.ngg-gallery-thumbnail-box {
float:none !important;
display:inline-block;
}