Remove Text below Collection Card

Solved

Remove Text below Collection Card

dtlyme
Tourist
3 0 2

Hi all - Client would like the collections cards to just have the image with the text I have placed on the image - NO text link with the Collection name below.  Is this possible?  Can't figure out where I could do this within the theme settings!

https://degerendays.com/collections

 

Thank you in advance!

-Dana

Accepted Solution (1)

made4Uo
Shopify Partner
3875 719 1229

This is an accepted solution.

Hi @dtlyme,

 

If you want the link to still works when they click on the image, just follow the instructions below.

 

1. From your Admin Page, click Online Store > Themes >Actions > Edit code
2. In the Asset folder, open the base.css
3. Paste the code below at the very bottom of the file.

 

 

.collection-list .card__content{
    opacity: 0;
    height: 0;
}

 

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free

View solution in original post

Replies 5 (5)

made4Uo
Shopify Partner
3875 719 1229

This is an accepted solution.

Hi @dtlyme,

 

If you want the link to still works when they click on the image, just follow the instructions below.

 

1. From your Admin Page, click Online Store > Themes >Actions > Edit code
2. In the Asset folder, open the base.css
3. Paste the code below at the very bottom of the file.

 

 

.collection-list .card__content{
    opacity: 0;
    height: 0;
}

 

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
dtlyme
Tourist
3 0 2

Perfect!  Thank you so much - exactly what I wanted 🤗

arahming123
Tourist
5 0 3

Omg I almost shed a tear! You don't understand how long it took me to find a code that worked!! Thank you 🙂

GabrielS
Shopify Partner
486 107 117

Hi Dana,

 

To have the text removed form below the cards you can make use of the below CSS code.

.card-wrapper .card__content {
  display: none !important;
}

Adding the above code at the end of your base.css file should address your question.

GabrielS_0-1668798306756.png

 

Cheers!

 

Gabriel Soare | Web Developer
Are you looking to customize your Shopify or to fix a website bug?
You can reach me through my website gabrielsoare.com, DM, or email hello@gabrielsoare.com.
Have I helped you? Like my post.
dtlyme
Tourist
3 0 2

Fantastic! That worked beautifully. Thanks very much! edited to add - I still needed for the link to work so used the other posters solution, but thank you - my fault that I did not specify that!!