how
How can I remove this button from mobile or move it to the left side?
Issue: Remove or reposition the “Quick View” eye button on product cards for mobile.
Context:
Proposed solutions:
Current outcome:
Status: Unresolved/ongoing.
@abdullahmehdi Hello, I just wanted to confirm—are you currently using the Bella theme for your store? This will help me tailor my support more effectively. Thank you!.
and please share store url
Hello @abdullahmehdi
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->component-card.css
add this code at the end of the file and save.
@media (max-width: 1024px) {
.card-quickview.show-mb .quickview-icon {
right: 16rem !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
if you can share your store preview link and password than I can help
its ella theme
You can easily achieve this by adding this CSS to you theme.css/ base.css file
@media(max-width:800px){
.card-product .card-product__wrapper .group-right { display: none; }
}
.card-product .card-product__wrapper .group-right { right: auto; left: 0; }
.card-product .card-product__wrapper .group-right .card-quickviewIcon button { right: 0 !important;}
If this Solution Works for you Kindly Like This and Mark This as a Solution
I did but it didn't work
![]()