• Resolved mtnwitt

    (@mtnwitt)


    I’m developing a new website using the ROOKIE theme and I would like to have the footer show only on the website’s Home page.

    I’m aware of the CSS to remove the footer from individual pages:
    .page-id-154 .site-footer {
    display: none;
    }

    However, I currently have 27 pages I need to have the footer removed from. Is there a simple CSS to either show the footer on the home page only or to remove the footer from multiple games at the same time?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Roch

    (@rochesterj)

    Hi!

    Thanks for reaching out!

    Sure, you could use the reverse logic:

    .site-footer {
        display: none;
    }
    .home .site-footer {
        display: block;
    }

    Kind Regards,
    -Roch

    Thread Starter mtnwitt

    (@mtnwitt)

    Thanks so much! That worked great!

    Roch

    (@rochesterj)

    You’re most welcome!

    Let us know if you need anything else.

    Kind Regards,
    -Roch

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show Footer on Home Page only’ is closed to new replies.