Can someone pls help with code to make the changes under “Recently Viewed Products” https://milkymotorsports.com/products/x-hook-tow-hook:
-
Remove the black border (or just change the color) around the add-to-cart button.
-
Change the add-to-cart font to not be bold.
-
Remove the “view more” popup on hover and instead view 2nd image on hover.
-
Change the image for sold out to https://cdn.shopify.com/s/files/1/0574/6429/1511/files/sold-out-label.png?v=1678944390
-
Align Recently Viewed Products title to the left.
-
Add blue border around the add-to-cart button on hover.
Hi,
Please add below css code in bottom of assets/base.css file
.AkTopPin__AddCart {
border: none !important;
}
.AkTopPin__AddCart__Text {
font-weight: 400;
}
.AkTopPin__product-content__Item-view-more {
display: none;
}
.AkTopPin .AkTopPin__container__header-title {
display: block;
}
Thank you.
1 Like
@Denishamakwana can you please help with these too?
-
View 2nd image on hover.
-
Change the image for sold out to https://cdn.shopify.com/s/files/1/0574/6429/1511/files/sold-out-label.png?v=1678944390
-
Add blue border around the add-to-cart button on hover.
HI,
.AkTopPin .AkTopPin__AddCart:hover {
border: 1px solid red !important; (give your color instead of red)
}
Thank you.
1 Like