Posted by patterndev on June 14, 2010 at 2:08pm
First off. Thank you for Panels! Although I just started w it.. it is awesome!
I am creating a panel that uses the 3 column 33/34/33 stacked layout. I am trying to add multiple pictures in a row instead of a column. I am using the bottom region for this but am only able to get dispay in a column. How can I change it to a row? Do I need to update the theme or can this be configured?
Thanks!
Comments
change a panel with images from vertical to horizontal column
I had the same problem, and the only way I found a way to do this was to set the div class closest to the image with the following css:
.field-item {
display: inline-block;
padding-right: 5px;
}
This was in /sites/all/modules/panels/plugins/layouts/threecol_25_50_25_stacked/threecol_25_50_25_stacked.css as this was the layout I was using. I assume that one problem with this may be that other objects with div: field-item may also be affected, but this doesn't affect my site.