Removing Ad tabs in home page
Trying to remove Ad tabs in home page.
After reading the thread
https://forums.appthemes.com/help-us...emplate-96558/
added the following code to functions.php in child theme.
Code:
function remove_front_tabs() {
return array();
}
add_filter( 'cp_ads_listing_tabs', 'remove_front_tabs' );
Added the following code to style.css in child theme.
Code:
.content_left .tabcontrol {
min-height: 0;
}
.content_left ul.tabnavig {
height: 0;
}
Ad tabs are removed in home page. But, there is a long vertical space between search box and footer.
Please help to remove the long vertical space.
Thanks.