Title: Making wp-cycle responsive
Last modified: August 20, 2016

---

# Making wp-cycle responsive

 *  [lynnema](https://wordpress.org/support/users/lynnema/)
 * (@lynnema)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/making-wp-cycle-responsive/)
 * Hi there –
 * I love this plugin – but I can’t seem to make the images resize. Can you tell
   me where I can change the code to do so? Thanks in advance!
 * Jess
 * [http://wordpress.org/extend/plugins/wp-cycle/](http://wordpress.org/extend/plugins/wp-cycle/)

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

 *  [smhmic](https://wordpress.org/support/users/smhmic/)
 * (@smhmic)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/making-wp-cycle-responsive/#post-3327156)
 * jQuery Cycle — the code that powers this plugin — is not responsive. There are
   some workarounds, all of which require a small bit of coding.
 * But if you are comfortable coding, then I recommend using a solution that doesn’t
   need to be hacked into behaving semi-responsively. I like this one: [http://www.woothemes.com/flexslider/](http://www.woothemes.com/flexslider/)
 *  [valerio_cas](https://wordpress.org/support/users/valerio_cas/)
 * (@valerio_cas)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/making-wp-cycle-responsive/#post-3327206)
 * here is a quick fix I used, which requires jQuery, and for all of your images
   to be the same height.
 *     ```
       <script>
                       function responsiveSlider() {
                           jQuery("#rotator").height(jQuery("#rotator img").first().height());
                       }
                       jQuery(window).load(responsiveSlider);
                       jQuery(window).resize(responsiveSlider);
       </script>
       ```
   
 * then in your css something like `
    #rotator { width: 100%; max-width: 960px; }`

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

The topic ‘Making wp-cycle responsive’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-cycle.svg)
 * [WP-Cycle](https://wordpress.org/plugins/wp-cycle/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-cycle/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-cycle/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-cycle/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-cycle/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-cycle/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [valerio_cas](https://wordpress.org/support/users/valerio_cas/)
 * Last activity: [13 years, 2 months ago](https://wordpress.org/support/topic/making-wp-cycle-responsive/#post-3327206)
 * Status: not resolved