Add this custom CSS (Customize/Custom CSS) in order to edit the checkout page from CSS.
.ct-cart-form {
color: white;
background-color: red;
padding: 20px;
border-radius: 5px;
}
András Tóth's professional blog | banditoth
.NET MAUI, Xamarin.Forms, .NET developer from Hungary
Add this custom CSS (Customize/Custom CSS) in order to edit the checkout page from CSS.
.ct-cart-form {
color: white;
background-color: red;
padding: 20px;
border-radius: 5px;
}
Add this custom CSS (Customize/Custom CSS) in order to hide the ‘Update cart’ button from the checkout page.
button[name='update_cart']{
display: none !important
}
The button’s name should differ. Ensure the button’s name with developer tools within your browser.