In what file?
Topic summary
A user wants to remove the “Product” and “Total” column headers and their underline from the cart drawer in the Dawn theme.
Solutions provided:
- CSS approach: Add
.cart-items thead { display: none; }to hide the entire header row - Alternative CSS: Target specific elements with
#CartDrawer-ProductColumn,#CartDrawer-TotalColumn, and.cart-drawer-items thusingdisplay: noneandborder: none !important
Implementation location:
All solutions recommend adding the CSS code to theme.liquid file, placed just before the closing </body> tag. The code should be wrapped in <style> tags.
Status: Multiple working solutions provided with step-by-step instructions and screenshots. The discussion appears resolved with users offering similar CSS-based approaches.