It's the bootstrap css for the page (http://bsva2.com/CPR/css/bootstrap.css) that's causing the stacking of the thumbnails (around line 4897):
Code:
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: border .2s ease-in-out;
-o-transition: border .2s ease-in-out;
transition: border .2s ease-in-out;
}
And (around line 1124):
Code:
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
}
Both of these should be able to be avoided simply by globally changing the word 'thumbnail' as used in the gallery's markup and in its css styles to - say 'gallerythumbnail'.
Bookmarks