• Hi. I am using the Amadeus theme. I would like the tagline to show up on the homepage only. How do I do that? I would like to know what the php code to do that is, and where exactly do I cut and paste that php code?

Viewing 1 replies (of 1 total)
  • Hello christopherramirez,

    You can achive this with css. Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.

    h2.site-description {
      display: none;
    }
    
    body.home h2.site-description {
      display: inline-block;
    }

    Hope this will helps you.

    Thanks !

Viewing 1 replies (of 1 total)
  • The topic ‘How do I get the tagline on the homepage only’ is closed to new replies.