How to change cart page in dawn theme

Solved

How to change cart page in dawn theme

amisha-29
Shopify Partner
88 1 21

In dawn theme the cart page is very basic i want to enhance the cart page but when I was trying to do then base.css is blocking me to do the changes. Changes are showing but it is not looking good and also I don't want to overrirde in my code. Can anyone tell me how to proper redesign the cart page properly. in the dawn theme. If it is possible to proper redesign in the same code then please let me know

Accepted Solution (1)

richardcobain
Trailblazer
160 7 22

This is an accepted solution.

To properly redesign the cart page in the Dawn theme without overriding base.css, you can create custom CSS classes in a new stylesheet (e.g., custom-cart.css) and include it conditionally on the cart page via theme.liquid. Target elements specifically using cart-page class names and avoid generic selectors to prevent style conflicts. You can also duplicate and customize main-cart-items.liquid in sections to change layout or structure without breaking core functionality.

View solution in original post

Replies 2 (2)

richardcobain
Trailblazer
160 7 22

This is an accepted solution.

To properly redesign the cart page in the Dawn theme without overriding base.css, you can create custom CSS classes in a new stylesheet (e.g., custom-cart.css) and include it conditionally on the cart page via theme.liquid. Target elements specifically using cart-page class names and avoid generic selectors to prevent style conflicts. You can also duplicate and customize main-cart-items.liquid in sections to change layout or structure without breaking core functionality.

amisha-29
Shopify Partner
88 1 21

Thankyou for this solution