[ad_1]
Hi @thelabo
The way you could do that is include all text in the banner:
<span class="banner-1>first banner</span>
<span class="banner-2>second banner</span>
And then you’d have to buy some custom css in the site that would hide and show based on the page. In order to page that work your page will need specific class names or IDs at a higher level element (preferably the body element) so you could use custom css:
.page-1 .banner-2 {
display: none;
}
.page-2 .banner-1 {
display: none;
}
