https://kevsjuice.myshopify.com/
PW: aickeu
I would like to change the cart button to be rounded instead of square - see attached reference (currently square)

https://kevsjuice.myshopify.com/
PW: aickeu
I would like to change the cart button to be rounded instead of square - see attached reference (currently square)

Please add below css in bottom of assets/theme–async.css file
.header–cart-link {
border-radius: 14px;
}
Thank you.
It will only appear if you have an added product…
Did not work sadly ![]()
please try this
.header–cart-link[data-has-items=true] {
border-radius: 14px ;
}
Thank you.
still no luck, thank you though.
@media only screen and (min-width: 768px){
.header--cart-link[data-has-items=true] {
border-radius: 25px !important;
}
}
Add this code in the bottom of the assets/theme–async.css file
Thank you!