How do I disable this when hovering?
It’s under “Cobots”
Hi @AndreNL ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file → Save
.list-categories .view-abs {
display: none !important;
}
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
@AndreNL Please follow below steps to disable the plus symbol when hovering on collection product. Let me know whether it is helpful for you.
@media (min-width: 1025px) {
.list-categories .img-box:hover .view-abs {
opacity: 0 !important;
}
}
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.
Works perfectly when combined with a pointer on hover ![]()
Hi @AndreNL ,
We’re happy to see that our suggestion helped you solve the issue.
Should you need any further information, please do not hesitate to contact us by tagging directly at Community post. We will check and let you know soon.
Thanks in advance ![]()