Tagged: x
-
AuthorPosts
-
March 26, 2016 at 3:26 am #853286
Hello Team,
I want to place AdSense leader board ad above main navigation bar. I’m using X child theme and activated renew stack. Kindly help.
March 26, 2016 at 4:27 am #853315Hello There,
Thanks for writing in! Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Once you already have your child theme active and ready, please insert this following code in your child theme’s functions.php file.
// Add AdSense above the navbar // ============================================================================= function adsense_leatherboard(){ ?> <div class="custom-ad x-container max width center-text pam"> <!-- AdSense Leatherboard --> <img src="http://placehold.it/768x90" alt="Adsense Ad"> </div> <?php } add_action('x_before_view_global__navbar', 'adsense_leatherboard'); // =============================================================================
Please let us know if this works out for you.
-
AuthorPosts