Home › Forums › Jevelin Theme › How to remove the footer on product page ?
Home › Forums › Jevelin Theme › How to remove the footer on product page ?
Hi,
I still have this grey footer in this page:
http://www.worldofpixels.be/product/1/
How can I disable it please ?
Kind regards,
Ben
Solution for this topic
Hi Ben,
Thank you for your question.
You can remove it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.single-product footer.sh-footer {
display: none;
}
Best regards,
Shufflehound team
this works thank you !
How can I remove it from the category page, like http://www.worldofpixels.be/product-category/prijzen-prijslijst/ ?
Solution for this topic
To remove it from product category page please use the below CSS code.
.archive.tax-product_cat footer.sh-footer {
display: none;
}
This works, thank you !
You are most welcome here 🙂