In a previous post I got support to put ads below the navbar using the following code in functions.php
add_action( 'x_after_view_global__navbar', 'x_print_top_slider' );
function x_print_top_slider(){
?>
<?php if(function_exists('the_ad_group')) the_ad_group(86); ?>
<?php
}
and now I want to get rid of the white area in between the ad and the top of the post. It’s hard to explain so here’s a picture
I want the bottom of the ad to touch the top of the post without the gap. Not sure what I would have to edit or where.