Viewing 6 replies - 1 through 6 (of 6 total)
  • You’re misstaken. They don’t slide or animate in any way. They just appear when hovered over.

    Thread Starter haizdesign

    (@haizdesign)

    Thanks ulfben,
    Turns out that a CSS transition on one of my links was cascading through to the #hoverNav a element.

    Ulf,
    Really nice work! It’s great having 2 fields available for display, and possibly different styling for each.

    I found one little weird thing, and that was similar to the guy above… the link arrows would slide in when hovered, which seemed a bit weird.

    I am nothing if not persistent, so I finally tracked it down. This line of CSS3 fancy/tricky stuff was doing it:

    a, a:visited {
    	-moz-transition: all 0.1s ease-in-out;
    	-webkit-transition: all 0.1s ease-in-out;
    	transition: all 0.1s ease-in-out;
    }

    So I just made another block under that as follows:

    #hoverNav a, #hoverNav a:visited {
    	-moz-transition: none;
    	-webkit-transition: none;
    	transition: none;
    }

    This code is in the sample child theme of the latest release of the Genesis framework (1.9.1), so if someone is using your plugin with that, this will come up.

    Hope this helps you and others.
    Thanks!! Dave

    Thanks for taking the time to report!

    MyTeeFunny

    (@prettysickpuppycom)

    Whereas I like the < prev and next > buttons to show, at some point they stopped showing. I don’t know why (btw, I’m using WP Super Cache and Better WordPress Minify, if that matters) but I did find a fix for it.

    In the the wp-jquery-lightbox files:
    styles/lightbox.css
    and
    styles/lightbox.min.css

    I changed the path for every instance of:

    url('./images/FILENAME.EXT')

    To this:

    url('/wp-content/plugins/wp-jquery-lightbox/styles/images/FILENAME.EXT')

    In otherwords, I changed from a relative path to a fully qualified path.

    If you installed WP in a directory/folder and not in the root, then you’ll need to add that in as well, such as: /folder/wp-content/…

    Hope this helps anyone who may have come across the same issue.

    ulfben

    (@ulfben)

    Thank you. ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Next/Previous Button animations’ is closed to new replies.