• emilyb9

    (@emilyb9)


    What is the best way to completely remove the footer from the home page? Versus from all pages?

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

    (@arandomscott)

    you could use custom css

    .site-footer.site-footer–4 {
    display: none;
    }

    Thread Starter emilyb9

    (@emilyb9)

    I had tried that before. I added it to Additional CSS and it still shows up.

    https://y9p.1d9.myftpupload.com

    Hello @emilyb9,

    Thanks for reaching out!

    I am sorry for the delayed reply. This is how you can hide the footer on the homepage:

    .home footer{
    	display: none;
    }

    And this is how it can be hidden on all pages:

    footer{
    	display: none;
    }

    Kindly let me know if the code snippets displayed above helped. 🙂

    Best Regards,

    Milos | GoDaddy

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Footer’ is closed to new replies.