Reply To: Home Page Template

Home Forums Support Home Page Template Reply To: Home Page Template

Home Forums Support Home Page Template Reply To: Home Page Template

#103553
Tom
Lead Developer
Lead Developer

You’ll need to add the CSS regardless, but you can target specific pages with their body class.

For example, you can target the homepage like this:

.home .container {
      display: none;
}

Or specific pages by their ID, like this:

.page-id-xx .container {
      display: none;
}

xx would be the ID of the page.

Let me know if you need more info 🙂