• Resolved thelabo

    (@thelabo)


    dear –

    I would like to have a different content for some pages.

    The text in the banner for some pages.
    and there is a default text for the rest of the pages.

    what would be the solution ?

    thx

Viewing 1 replies (of 1 total)
  • Plugin Author rpetersen29

    (@rpetersen29)

    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;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘different text for different pages’ is closed to new replies.