How To Remove Items In Cart Drawer (Dawn Theme)

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 th using display: none and border: 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.

Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

In what file?