Archived topic
Image is smaller when caption is used
3 replies · Started by Nikola on September 9, 2016
Viewing posts 1–4 of 4
Hello,
When the image caption is used an image is getting smaller, for 10px in width.
It is the case in both pages and posts.
I tested it several times. Any way to fix this?
Thank you.
WordPress sets a fixed width to images with captions.
You could try something like this:
add_action( 'after_setup_theme','generate_change_caption_padding' );
function generate_change_caption_padding()
{
remove_filter( 'img_caption_shortcode_width', 'generate_remove_caption_padding' );
}
You always have correct answer to any question. :) Thank you!
No problem! :)
This archived topic is closed to new replies.