Dawn 12 | Remove Cart collection heading,

Topic summary

A user seeks to remove the “Cart collection heading” from their Shopify store (ellsoll.com).

Initial Solutions Provided:

  • Add CSS code to base.css file: .card__heading a.full-unstyled-link { display: none !important; }
  • Alternative CSS targeting empty headings: h3.card__heading .drawer-inner__empty { display: none; }

Issue Evolution:

  • User reports the code also removes product headings unintentionally
  • Solution initially works on mobile but not desktop
  • User manages to fix the desktop issue independently

Current Status:

  • Problem resolved by the user after applying suggested CSS modifications
  • Some confusion remains about which specific heading was targeted, as support couldn’t replicate the desktop issue

Additional Note:

  • One responder suggested reducing tall collection images for better user experience, though the original poster didn’t experience this display issue
Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

Hi,

Is there any way to remove the heading of my cart collection?

Site: ellsoll.com

1 Like

Hi @Ell_Soll

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.card__heading a.full-unstyled-link {

display: none !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

In addition, I noticed that the images on the collection are very tall, making users have to scroll to see all the images. I think you should reduce the image size so users can see the product image on a screen.

I think it’s your display cause it’s all good for me.

Your code also remove the products heading.

Different code?

HI @Ell_Soll

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.drawer__inner-empty h3.card__heading {
    display: none;
}

And save.

result:

1 Like

Works perfect!

Thanks.

Hi,

Now I have noticed that it only removed it on mobile but not on desktop.

Any solution please?

*EDIT: Managed to fix it, thanks anyway.

1 Like

Im sorry but I didnt see on my end.