Is it possible, in the Product Slider only, to remove the inner_product_header and avia_cart_button sections and leave only a product image that links to its respective single product page? Is there something else I can use that does the same thing as I’m wanting? Ive linked to an image of what I’m trying to accomplish.
Hi,
You can this on your custom.css or Quick CSS to hide the areas
.inner_product_header {
display: none;
}
.avia_cart_buttons {
display: none;
}
Regards,
Ismael
Thanks Ismael but I’ve already tried that. By adding that to the stylesheet it removes the sections site wide. I’m just wanting to remove those two sections from the Product Slider only.
Hi,
You can use this:
.avia-content-slider-inner .inner_product_header {
display: none;
}
.avia-content-slider-inner .avia_cart_buttons {
display: none;
}
Regards,
Ismael
Ah, once again your genius comes through. Works great.
Thanks Ismael!