I found out that using galleria with jcarousel in IE6 resulted only with the carousel displayed.
The galleria thumbnails are not visible.

If this is not fixable under IE6, then may I suggest that jcarousel support is disabled for IE6?

CommentFileSizeAuthor
#8 Works well on IE 6.178.35 KBbenyuan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Mark Theunissen’s picture

Status: Active » Postponed

I can confirm that the bug exists, but I have no idea what is causing it. Some interaction between Galleria CSS/JS and Jcarousel I would imagine.

I don't have the time or inclination to fix this. IE8 is out as a critical security update. IE7 has been out for years.

You could try ask Wim Leers in the jCarousel issue queue. He may have seen this before.

Sorry!

wuf31’s picture

Project: Galleria » jCarousel
Version: 6.x-1.0-rc1 » 6.x-1.1

Bumping it to JCarousel issue queue

Wim Leers’s picture

Title: No Galleria thumbnails in Jcarousel on IE6 » No Galleria thumbnails in jCarousel on IE6
Project: jCarousel » Galleria
Version: 6.x-1.1 » 6.x-1.x-dev
Status: Postponed » Active

I haven't seen this issue — or at least don't remember it, as I haven't actually used jCarousel in more than a year. Sorry. The only way to find the cause is to track it down yourself, I'm afraid.

You could start by trying if jCarousel's CSS works in IE6 by default. If it does, then it's the interaction with Galleria's CSS. If it doesn't, then jCarousel's CSS is to blame.

Mark Theunissen’s picture

Status: Active » Postponed

Thanks Wim. Marking as postponed.

davesmn’s picture

Edit your galleria CSS file (default: sites/all/modules/galleria/inc/) and edit the first entry:

.item-list .galleria {
list-style:none;
}

add a new argument:

.item-list .galleria {
list-style:none;
height: 80px; /* enter desired value */
}

Worked for me :)
Tested on IE6, IE7 and of course FF3.

wuf31’s picture

Status: Postponed » Needs review

Thank you, davesmn,

Your solution did work, though in IE6 only two of my three thumbnails show up.
Anyway, it may be the changes I've made to galleria css.
Gotta dig it again..

eeyorr’s picture

The missing last thumbnail seems to be caused by IE's doubled float-margin bug. I solved it by adding "display: inline" to .item-list .galleria li, or if you're editing the original galleria.css file, change "display: block" to "display: inline":

.item-list .galleria li {
  display: inline;
}
benyuan’s picture

Status: Needs review » Reviewed & tested by the community
FileSize
178.35 KB

Follow the instruction of davesmn. It works for me as well. Tested on IE6-IE8, firefox 3 and google crome 5.0

Edit your galleria CSS file (default: sites/all/modules/galleria/inc/) and edit the first entry:

.item-list .galleria {
list-style:none;
}

add a new argument:

.item-list .galleria {
list-style:none;
height: 80px; /* enter desired value */
}
Andrew Gorokhovets’s picture

#5 works perfectly
#7 does not work

eeyorr’s picture

#9 is a false statement, as #7 works perfectly for me. Thanks for the helpful input, though!

andribas’s picture

#5 works for me (i had thumbnail 1px height).

now when i click on thumb or < prev next > ie6 goes to top of page. firefox works ok. how to fix this?