Hi,
Is there any way to remove the heading of my cart collection?
Site: ellsoll.com
A user seeks to remove the “Cart collection heading” from their Shopify store (ellsoll.com).
Initial Solutions Provided:
base.css file: .card__heading a.full-unstyled-link { display: none !important; }h3.card__heading .drawer-inner__empty { display: none; }Issue Evolution:
Current Status:
Additional Note:
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:
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.