Archived topic
hide footer?
9 replies · Started by markus on May 11, 2020
Trying to hide entire footer section on my shop page. Using Elements works for other pages but not for shop page. Using shortcode .page-id-78802 .footer_bar { display: none; } does not work either. Could use some assist. TIA
Hi there,
Try this:
body.page-id-78149 .site-footer {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
no love.
this is the page i am working on
https://stellarsoundlabs.com/shop-music-mastering/?preview_id=78802&preview_nonce=9a58db94bf&preview=true
thanks.
I don't have access to that page unfortunately.
The CSS should definitely work. You just need to make sure the page ID is correct.
ok, so my code is
body.page-id-78802 .site-footer {
display: none;
}
and I still see the footer. Maybe some WooComm plugin taking over?
Unlikely.
Can you link me to the page in question?
https://stellarsoundlabs.com/shop-music-mastering/
This page is designated as my Shop page.
I am currently working on it. thanks.
The shop page doesn't come with a page id so that's why the CSS isn't working.
Try this selector:
body.post-type-archive-product .site-footer
Bingo. Thanks. I learn something every time from you guys.
No problem :)