Topic summary
A Shopify store owner reports that their checkout button text is not displaying properly, sharing a screenshot of the issue on their site (bentishop.com).
Proposed Solution:
- Another user suggests adding CSS code to fix the visibility issue
- The fix involves editing the
component-cart.cssfile in the theme’s code editor - Specific CSS property recommended:
position: static !important;for the.cart__checkout-buttonclass
Current Status:
- Solution has been offered but not yet confirmed as tested or resolved
- The issue appears to be a CSS positioning problem affecting button text visibility
website is mybentishop.com
Hi @BentiShop
You can try this code to achieve your result
Go to the online store → edit code → component-cart.css file
and below the file add these code
.cart__checkout-button{
position: static !important;
}
Result:

