/* override.css */

/* width of the left-column before the thumbs start wrapping */
/* you can set this independent of the actual td width; you should set both */
.galleria {
  width: 230px;
}

/* this controls the height and width of the scaled thumbnails, 80x80 is the default if you erase */
/* here you can put a border on the thumbnails, etc if you wanted */
.galleria li {
  height: 60px;
  width: 60px;
  border: 1px solid black;
}

/* here you can control the whole "stack" of thumbs at once */
/* this will flush the thumbs up against the column */
ul.gallery {
  margin-left: 0; padding-left: 0;
}

/* by default, the caption shows underneath the picture; if you want that then remove this */
span.caption {
  display:none;
}

/* this is our caption, which shows up in the left column;
   you can display: none THIS one if you want the caption under the image.
   I like to set this to a fixed height which is the max number of lines of text I think I'll have
   in a caption so that the "nav" (prev/next) doesn't jump up and down depending
   on the height of the caption.
   */
#galleria_caption {
  height: 3em;
}
