after I installed gallery formatter 7x-1x2 on drupal 7.17 i tried to set up a test gallery.

now: when i point the mouse over the thumbs, i can see the various buttons flying around in the background. (the gallery basically works, but doesn't look good that way)
i tried to use other styles as well, but the problem remains (just the buttons change according to the style).

here is the link to the test gallery:
http://tinyurl.com/brrd7m2

i tried to uninstall and reinstall the gf module and the styles, but i can't get it running properly.

thanks for having look!

Comments

dan2k3k4’s picture

Version: 7.x-1.2 » 7.x-1.3

I have the same issue with the thumbnails on highlight, trying to find out why it does that (must be a javascript issue with another module?).

dan2k3k4’s picture

Hmm seems to be a CSS issue with my theme.

In the style.css for my theme, I have:

a:hover {
-webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}

removing all that, makes it work fine, so I suppose I'll just have to "override" those values in the css for the gallery formatter style.

dan2k3k4’s picture

@freibadschwimmer - In your site example, you have this in your navigation.css (located in sites/all/themes/sky/css)

a {
text-decoration: none;
-moz-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}

If you removed those transition effects then it works fine, so just overwrite those effects in your gallery formatter style.

freibadschwimmer’s picture

thanks a lot dan2k3k4,

indeed this solved my problem!

seems you are right that it is a css issue.

dan2k3k4’s picture

Status: Needs work » Closed (works as designed)

I suppose this should be marked as "works as designed" - and anyone else who gets here just has to check the CSS for the theme they use