I am using the following to create my gallery

Drupal Colorbox Module
Drupal Views Module
Drupal Ctools Module
Colorbox Plugin

I have done this before and usually a simple snippet of css fixes all....well not this time this is the snippet I usually use

.field-name-field-images .field-item{
float:left;
margin:0 10px 10px 0;
}

Here is the site in question http://trinitytradegroup.com

Please help me figure out why my images are still showing up vertical instead of a nice grid pattern, oh and yes I have the views set up to display as grid 4 columns horizontally.

Comments

nevets’s picture

I see the gallery page with horizontal images, the content pages (the actuall galleries, such as http://trinitytradegroup.com/?q=dogs2) are vertical and need css something like

.field-name-field-image1 .field-item {
  float: left;
  margin-right: 5px;
  margin-top: 5px;
}

You might also want to use a module like Galleria, Field Slideshow or Gallery Formatter

wessmith’s picture

Thank You!!!! I totally see now what I was missing.....so simple!!! Thanks!!