Removing captions breaks image centering
-
Hello everyone, I am doing a client job currently, and I was asked to remove captions from pages but not from lightbox effects, which I was able to accomplish using this code in functions.php
function no_caption($deprecated, $attr, $content) { return $content; };
add_filter(‘img_caption_shortcode’, ‘no_caption’, 10, 3);However, this destroys image centering for any image that does have a caption.
Is there a code to force post content to center?
Currently using the ElegantThemes Origin theme with custom CSS.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Removing captions breaks image centering’ is closed to new replies.