How to remove collection title from under picture Craft Theme

Hello,

I’m currently using Craft Theme 2.0 but would like to upgrade to the newer version 8.0.
I can’t figure out how to remove the collection titles under their pictures on my main page. Can someone help me edit the code please? Thank you :slightly_smiling_face:

Hi @Elleashop ,

Please share your store URL
So that we can help you.

Thank you.

www.elleashop.ca

Thank you for getting back to me @PageFly-Kate
www.elleashop.ca

Also, I should mentioned that my current website has been modified to my liking. It’s with the new update, I loose the coding I did to remove the collection titles under their pictures

Hi @Elleashop ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:

.collection-list .card__information a.full-unstyled-link {
   display: none !important;
}

Hope my answer will help you.

@PageFly-Kate I tried and it doesn’t change anything. Is it because its version 8.0 ? I’ve tried many different coding from different posts and nothing works

@Elleashop ,

You want to hide these title lines right, I checked and hidden it for you because you are keeping the text color the same as the background color of the site, so it won’t be visible.

Yes, That’s what I want to hide! :grinning_face:

How do i change the colour of that writing to match the background?

Yes, you can follow the steps in my previous answer and you will see as shown below, the space between collections has been narrowed after the title is hidden.

And if you want to show the title and change the color for them, you can follow these steps:

Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:

.collection-list .card__information a.full-unstyled-link {
   display: block !important;
   color: darkgoldenrod;

}

Note: you can change the color as you like.

@PageFly-Kate I’m trying and it’s not working :thinking: Would it be because im on the copy version? It should still work right?

sorry, it’s applied to your main theme and i don’t think it’s right for the copy

Ok ! Thank you for taking the time to resolve this issue.

1 Like