Title: Major Caption Bug
Last modified: August 20, 2016

---

# Major Caption Bug

 *  [davidddn](https://wordpress.org/support/users/davidddn/)
 * (@davidddn)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/major-caption-bug/)
 * I found and fixed a major issue with captions.
 * To reproduce, in the body of a post, have a small (250 pixel) image followed 
   by a 500px image. Captions on both.
 * The javascript will use the caption div width of the first smaller image for 
   calculations on the second larger image, resulting in a shrunken image.
 * Fix:
 * Lines 31-37:
 *  var capw = jQuery(‘.wp-caption’).width();
    // Remove the style attribute from.
   wp-caption jQuery(‘.wp-caption’).removeAttr(‘style’); // Calculate the width 
   of .wp-caption as a percentage of the width of .hentry var caperc = ((capw / 
   postw) * 100); // Write a style attribute with width as a percentage jQuery(‘.
   wp-caption’).attr(‘style’,’width:’ + caperc + ‘%;’);
 * to
 *  var capw = jQuery(this).parent(‘.wp-caption’).width();
    // Remove the style 
   attribute from .wp-caption jQuery(‘.wp-caption’).removeAttr(‘style’); // Calculate
   the width of .wp-caption as a percentage of the width of .hentry var caperc =((
   capw / postw) * 100); // Write a style attribute with width as a percentage jQuery(
   this).parent(‘.wp-caption’).attr(‘style’,’width:’ + caperc + ‘%;’);
 * [http://wordpress.org/extend/plugins/wp-fluid-images/](http://wordpress.org/extend/plugins/wp-fluid-images/)

The topic ‘Major Caption Bug’ is closed to new replies.

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

 * 0 replies
 * 1 participant
 * Last reply from: [davidddn](https://wordpress.org/support/users/davidddn/)
 * Last activity: [13 years, 2 months ago](https://wordpress.org/support/topic/major-caption-bug/)
 * Status: not resolved