Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #851757

    Felipecibin
    Participant

    Hello,

    How can i take out the footer only on a especific page ??

    My url is http://heyguests.com/guia-exemplo/

    Thx

    #851891

    Prasant Rai
    Moderator

    Hello There,

    Thanks for writing in!

    You can add this under Custom > CSS in the Customizer:

    .page-id-389 footer.x-colophon.bottom {
        display: none !important;
    }

    Thanks.

    #851943

    Felipecibin
    Participant

    I think it dont work ! The foter is stil there !

    What can be ?

    Thx

    #851969

    Rupok
    Member

    Hi there,

    Thanks for updating. I have checked the code and tested on your site and it’s correct. So it must work if you add this correctly. I can’t see the code on your site so maybe you didn’t add this correctly. Kindly check and make sure it was added and there is no glitch on your other code that might prevent this code.

    Cheers!

    #852823

    Felipecibin
    Participant

    I think its not working because the page is with this code too :

    .page-id-389 #habla_window_div.habla_window_div_base {
    display: none!important;
    }

    This code is to take out the olark chat !

    Have one code that i can take out the olark chat and the footer on the same time ??

    Thx

    #853034

    Friech
    Moderator

    Hi There,

    You can update your code to:

    .page-id-389 #habla_window_div.habla_window_div_base,
    .page-id-389 footer.x-colophon{
    display: none!important;
    }
    

    Hope it helps, Cheers!