The list of image galleries do not appear correctly when in the list view. Firefox shows them side by side and IE 8 shows the Name and # of images on the same line. Example site: http://test.steamedsoup.com/image

Comments

pwetter’s picture

Ok, I think I at least found a workaround. I messed with the CSS in /alphorn/css/style.css a bit and made the following changes that seemed to have fixed these issues. Here are the 2 changes I made to the style sheets:

Original:
#st_center .views-row {
padding-bottom:20px;
float:left;
}

FIX:
#st_center ul.images li.views-row {
padding-bottom:20px;
float:left;
}
#st_center ul.galleries li.views-row {
padding-bottom:20px;
}

Original:
#st_center .views-field-name,
#st_center .views-field-created,
#st_center .views-field-comment-count {
float:left;
width:auto;
}

FIX:
#st_center .views-field-name,
#st_center .views-field-created,
#st_center .views-field-comment-count {
width:auto;
}