2018-01-26 15:50:15 +01:00

12 lines
343 B
JavaScript

jQuery(function($){
$('.sow-cta-base').each(function(){
var $$ = $(this);
var
$b = $$.find('.so-widget-sow-button'),
$t = $$.find('.sow-cta-text');
if($t.outerHeight() > $b.outerHeight()) {
$b.css('margin-top', ( $t.outerHeight() - $b.outerHeight() )/2 );
}
});
});