Ticket #245 (closed defect: duplicate)
Using rectangular thumbs with mixed orientation breaks layout
| Reported by: | mrzippy | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | 1.0 |
| Component: | Theme | Version: | 1.0-RC1 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
Due to the float used on the HTML list that thumbs are contained in the layout is broken when rectangular thumbs with mixed orientation is used.
A partial solution is a simple change to the CSS which maintains the layout without a float.
This works in Safari / Firefox / IE6 but NOT in IE6/IE7 so needs some work.
/plog-content/themes/default/gallery.css
CSS changes:
.slides li ---------- display: inline; (from block) remove float: left; .tag ----- add display: inline-block; add vertical-align: top;
Change History
comment:2 Changed 5 months ago by mrzippy
URL for code:
My Fix code (not ie6/i67) http://climaterealists.com/test/index.php
RC1 Code http://climaterealists.com/test/index.php
This is static testing code not a live site.
comment:3 Changed 5 months ago by mrzippy
comment:5 Changed 5 months ago by mrzippy
I have spent more time on this today and I can't find a way to get IE6/IE7 to display this correctly.
Only solution I can see is to change the layout code by specifying number of thumbs per row.
Then clearing floats per row.
As I said before you CANNOT float images to the left if they are different heights, it will not work correctly.



This works in Safari / Firefox / IE6 but NOT in IE6/IE7 so needs some work.
should read
This works in Safari / Firefox / IE8 but NOT in IE6/IE7 so needs some work.