Title: Next/Previous Button animations
Last modified: August 20, 2016

---

# Next/Previous Button animations

 *  Resolved [haizdesign](https://wordpress.org/support/users/haizdesign/)
 * (@haizdesign)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/)
 * Apologies if this has been asked before…
    How do you disable the animations on
   the next/previous buttons? The slide into place and I would rather they just 
   appear when hovered over.
 * [http://wordpress.org/extend/plugins/wp-jquery-lightbox/](http://wordpress.org/extend/plugins/wp-jquery-lightbox/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [ulfben](https://wordpress.org/support/users/ulfben/)
 * (@ulfben)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/#post-3184937)
 * You’re misstaken. They don’t slide or animate in any way. They just appear when
   hovered over.
 *  Thread Starter [haizdesign](https://wordpress.org/support/users/haizdesign/)
 * (@haizdesign)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/#post-3184939)
 * Thanks ulfben,
    Turns out that a CSS transition on one of my links was cascading
   through to the **#hoverNav a** element.
 *  [flamenco](https://wordpress.org/support/users/flamenco/)
 * (@flamenco)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/#post-3185010)
 * 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
 *  [ulfben](https://wordpress.org/support/users/ulfben/)
 * (@ulfben)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/#post-3185013)
 * Thanks for taking the time to report!
 *  [MyTeeFunny](https://wordpress.org/support/users/prettysickpuppycom/)
 * (@prettysickpuppycom)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/#post-3185015)
 * 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](https://wordpress.org/support/users/ulfben/)
 * (@ulfben)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/#post-3185016)
 * Thank you. 🙂

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Next/Previous Button animations’ is closed to new replies.

 * ![](https://ps.w.org/wp-jquery-lightbox/assets/icon-256x256.png?rev=3274178)
 * [LightPress Lightbox](https://wordpress.org/plugins/wp-jquery-lightbox/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-jquery-lightbox/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-jquery-lightbox/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-jquery-lightbox/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-jquery-lightbox/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-jquery-lightbox/reviews/)

 * 6 replies
 * 4 participants
 * Last reply from: [ulfben](https://wordpress.org/support/users/ulfben/)
 * Last activity: [13 years, 3 months ago](https://wordpress.org/support/topic/nextprevious-button-animations/#post-3185016)
 * Status: resolved