You are here

image.css in Image 6

Same filename and directory in other branches
  1. 7 image.css
/* Views: gallery style plugin. */
.view .image-gallery-nodes ul {
  text-align:center;
}
.view .image-gallery-nodes ul li {
  display:inline-block;
  *display:inline;
  /*
    There is no pretty way to get thumbnail sizes here.
    This will need to be overridden for sites that set a different size.
  */
  zoom: 1;
  list-style-type: none;
  width:150px;
  height: 150px;
  text-align:center;
  background: none;
}

File

image.css
View source
  1. /* Views: gallery style plugin. */
  2. .view .image-gallery-nodes ul {
  3. text-align:center;
  4. }
  5. .view .image-gallery-nodes ul li {
  6. display:inline-block;
  7. *display:inline;
  8. /*
  9. There is no pretty way to get thumbnail sizes here.
  10. This will need to be overridden for sites that set a different size.
  11. */
  12. zoom: 1;
  13. list-style-type: none;
  14. width:150px;
  15. height: 150px;
  16. text-align:center;
  17. background: none;
  18. }