Wanna Add Cart Button On Right Side Of Product Card in OCCU website
URL: https://occu-com.myshopify.com/collections/aura
PASS: 1
Like These
There website URL : https://chimi-online.com/eu/c/eyewear/sunglasses
A user wants to reposition the “Add to Cart” button on their Shopify store’s product cards to appear on the right side, similar to the layout used on chimi-online.com.
Current Issue:
Proposed Solution:
A responder suggested using CSS flexbox to achieve this:
display: flex with justify-content: space-between to the product card containermargin-left: auto on the add-to-cart button class to push it to the right sideThe solution remains untested, and no follow-up confirmation has been provided yet.
Wanna Add Cart Button On Right Side Of Product Card in OCCU website
URL: https://occu-com.myshopify.com/collections/aura
PASS: 1
Like These
There website URL : https://chimi-online.com/eu/c/eyewear/sunglasses
Hi,
Hope this will work
At theme editor locate product card code and modify button placement and add css to style the button
CSS code example
.product-card {
display: flex;
justify-content: space-between;
align-items: center;
}
.add-to-cart {
margin-left: auto;
}