Hello!
There’s a built in “lookbook” feature I like on my theme, with a side scroll. However, there’s also a product overlay I wish to remove when you hover over the image tile. I would like to only have the image with “Heading” and “Description” text overlay on the image. Is this an easy fix?
The lookbook feature is currently on the bottom area of the landing page:
site: https://w4u65apa39ge9g0x-8134245.shopifypreview.com
Thanks!
This is what I want:
But I don’t want the roll over product thing to appear:
2 Likes
Hi
- Go to Online Store → Theme → Edit code.
- Open your theme.liquid file
- In theme.liquid, paste the below code before
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi @JayKay89
Yes, we can hide the product card on hover. The heading will remain visible when not hovering, but it will be hidden when you hover over it. If its that okay, you can check the code below.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.lookbook-product-card-box .product-card.card-wrapper.js-color-swatches-wrapper.quickview {
display: none;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks so much! This worked.
Welcome, Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
The effect doesn’t happen on hover; it appears when you scroll. As you scroll up or down, the next and previous images appear.
The problem I’ve having with this solution is that it disables the hover over function in the other product features? Is there any way I can just remove the rollover from the lookbook only and not the featured products?
Did you already use the code? Can I check it again without the code? The code I provided is only for the lookbook.