jQuery(document).ready(function($){

// Removes bottom margin of <p> wrapper that gets inserted around images with caption class
$('p .image-caption-container').each(function() {
// Make this code do what you want.
$(this).parent().css('margin-bottom', '0px');
});

});
