A user customized collection list sections to display images with text overlays, but only the text was clickable—not the entire image. This created a poor user experience.
Root Cause:
The custom CSS used display: none; on the .card__content element, which hides it and prevents any interaction with visitors.
Solution:
Replace display: none; with opacity: 0; in the custom CSS. This keeps the element invisible but still interactive, making the entire image area clickable.
Implementation:
Add to the Collection List section’s Custom CSS:
Or modify existing code by changing display: none; to opacity: 0;.
Outcome:
The solution was confirmed working by another user facing the same issue. The discussion is resolved with a straightforward CSS fix applicable to Dawn theme collection pages.
Summarized with AI on October 24.
AI used: claude-sonnet-4-5-20250929.
Hello, I have customized some of my sections with coding to look a certain way. Specifically my collection lists, so that they appear as an image, with the text inside the image. However if you want to go to a specific collection, I need to click on the text, and clicking on the image doesnt work which isnt very user friendly. How can I make the images clickable? I have examples of specific areas where I need this done:
Hi @JordiP I am trying to do the exact same thing as you were! May I ask, did you figure out how to do this? I hope that I just need to add some Custom CSS to the Collection List but I haven’t been able to find any examples of this yet. If you have some information on how to do this I would be extremely grateful if you could share this with me. Best regards - Steve
@tim_1 and @Dan-From-Ryviu thank you both so so much for your speedy responses and selflessness, I went down the route of replacing display:none; with opacity:0; and it worked a treat. Can’t wait to get this site up and running and start trading! Super awesome, thanks again!