Hello,
I find Galleria nearly perfect for my needs. I have only one problem.

I dont wan't to see thumbnails on my page, just the main picture and <

> buttons. I tried to modyfy css file:
.item-list .galleria li {
  /*display:block;*/
  display: none;      /*dont show thumbnails*/
  width:80px;
  height:80px;
  overflow:hidden;
  float:left;
  margin:0 10px 10px 0;
  background: none;
}
And it worked fine but just for FireFox, IE refused to show anything including main picture. Any help and ideas will be appreciated. Thanks!

Comments

pvanderspek’s picture

I haven't tried this myself, but perhaps you could do something like

.item-list .gallery li {
  display:none;
}

Slightly different selector as you can see.

tnikiel’s picture

.item-list .gallery li {
  display:none;
}

Thanks for the hint :) but unfortunately it didn't work.

Firefox showed only the main picture(which is OK) but IE8 didn't show anything - so effect was the same as with my previous try.

I am sure there is a way to do it, I will be grateful for any advise.