Active
Project:
Alphorn
Version:
6.x-1.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Oct 2010 at 07:49 UTC
Updated:
1 Nov 2010 at 04:36 UTC
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
Comment #1
pwetter commentedOk, 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;
}