I plan on making graphics for each collection that include the title as part of the design. So, I will need to remove the title that is displayed below the collection image. How can I remove them?
I use the theme Dawn for my website. I’ve already tried out solutions from previous forums regarding this issue but nothing seems to work. The most recent attempt was implementing the following code into the bottom of the base.cc Theme code file. This did not work for me so I removed it.
.collection-list-wrapper .card__content {
position: absolute;
height: 100%;
opacity: 0;
}
Here is the current theme settings for the collections list page for reference:
Store URL: www.daralia.co
1 Like
Hi @aliaameid
Would you mind to share your store URL? thanks!
Sorry, password is now removed
1 Like
Thanks! 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:
div#shopify-section-template--19229892739347__main h3.card__heading {
display: none;
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @aliaameid
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
Thank you! That worked to remove the titles, however, now the image is not clickable to lead me to the individual collection list.
1 Like
You’re solution does not work because now I cannot click on the individual collection categories…
Oh you didnt tell that you like to remain the links. For that you need a developer that can add a link to the image. But I have a silly idea, you can used if you like to.
On this only the text you can add the link for the collections. So what I did, I make it larger the font.
I make the font cover the collection images and hide it.
the cursor will change into hand that identifies its clickable. And Arrow is not.
i use this code.
.collection-list__item.grid__item h3.card__heading {
position: absolute;
top: 20%;
color: transparent;
left: 20%;
font-size: 50px;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!