I'm trying to simplify galleria to remove most of the elements and styling around it within the classic theme. I really just want my image to scale to the galleria container, not the galleria stage. How does one control the relationship between the stage and the container? I also tried to remove the thumbnails by useing the 'thumbnails' option and the theme API by removing the 'thumbnails-container' element from the DOM, but no dice.
I'm trying to figure this out to create a really simple layout that maximizes the scaled image with the padding around it and at the bottom, where the thumbnails would be.
Any help on this would be great, I'm still re-reading the galleria docs as well. I'm open to simpler plugins as well but the scaling, centering, and lightbox are key.
Thanks!
if ($("#gallery").children().size() > 0) {
Galleria.loadTheme("../../Content/themes/galleria/galleria.classic.js");
Galleria.run("#gallery");
Galleria.configure({
lightbox: true,
dummy: 'http://c400976.r76.cf1.rackcdn.com/no_label_graphic.png',
width: 325,
height: 325,
thumbnails: false,
layerFollow: false
});
}