Thanks for your answer @friech!
ET_header it’s actually a global header. What bugs me is how I create an ad space/banner above that header.
Following another post in Support Forum, I did it inserting this code inside my theme’s functions.php file:
// Add Ad above the navbar
// =============================================================================
function ad_leatherboard(){ ?>
<div class="custom-ad x-container max width center-text pam">
<!-- Ad Leatherboard -->
<img src="http://placehold.it/768x90" alt="Ad Image">
</div>
<?php }
add_action('x_before_view_global__navbar', 'ad_leatherboard');
// =============================================================================
Now that code seems to be overridden by ET_header. And I have no idea how to insert it above my header, or as part of the header, which is globally configured at the moment. I know how to insert elements above and below, I just don’t know which one will serve me in order to create an ad banner. I don’t know, maybe there’s a way to do this via HTML code and there’s an element for that purposes, like the classical custom HTML Wordpress widget?
Thanks in advance.
Warm regards.