Collection List and featured Collection Heading aligned left, Title of Collections List not shown...

Topic summary

A user working with the Shrine Pro theme needs CSS customizations for collection displays. They want:

Main Requirements:

  • Left-align headings for both Collection List and Featured Collection sections
  • Hide titles on Collection List cards while keeping them visible on Featured Collection
  • Increase Featured Collection card sizes

Solution Progress:

Two community members provided CSS code snippets to be added to the theme’s Custom CSS section (Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS).

The solutions successfully achieved:

  • Left-aligned headings
  • Hidden Collection List card titles
  • Maintained Featured Collection product information

Current Issue:

After applying the final CSS code that hides Collection List titles, the collection images became unclickable. The user has requested an adjustment to restore clickability while maintaining the visual changes.

Status: Awaiting solution for clickable images

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hello again Experts,

i am looking for Code that lets me have the Heading of Collection List and featured Collection, aligned on the left, at the same time i would like to not show the titles on the collection list but still show them at featured collection, and maybe make the cards of featured collection generally a bit bigger.

All of this will be on the Shrine Pro Theme.

This is the Preview URL of a Draft i am working on:

https://thxvn3fyvwa9njnz-68898914601.shopifypreview.com

Thank you if someone can help me with this!

1 Like

I didn’t understand this part: “not show the titles on the collection list but still show them at featured collection”
Something like this?

Add this code in your base.css file:

.collection-list__item .card__content {
  opacity: 1 !important
}
h3.card__heading .full-unstyled-link {
  color: white;
  filter: drop-shadow(2px 4px 6px black);
  text-align: left;
  font-size: 12px;
}
.color-scheme-template--24143431696718__featured_collection_Dewkdn.color-background-1.isolate.gradient.content-for-grouping.animate-section.animate--hidden.always-display.animate--shown .card__information h3 {
  display: none;
}
h2.title.h2.title-with-highlight {
  text-align: left;
}
.page-width {
  max-width: 170rem !important;
}

Result:

yes thats almost it, thank you

what i mean with titles is the Text on the bottom of Collection List Tabs, i would like them to not be shown,

but product information on the featured collection section below

1 Like

Hi @GOMAK

I am not sure if I understand your idea right, if not, please let me know

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.title-wrapper-with-link:has(.collection-list-title) {
    justify-content: left !important;
}
.collection__title .title.h2.title-with-highlight {
    text-align: left !important;
}
.collection-list.contains-card.contains-card--collection .splide__track ul.splide__list {
    gap: 10px !important;
}
.collection > .collection__title.animate-item.animate-item--child.index-0.title-wrapper.title-wrapper--no-top-margin.page-width {
    display: none !important;
}

Here is the result:

I hope this helps

Best,

Daisy

1 Like

this is very close but not exactly what i mean

what i also mean is, that i would like the Collection List Titles that are marked there hidden, everything else is perfect.

Hi @GOMAK

So please use this code more in the same position

.collection-list-wrapper.page-width .collection-list.contains-card.contains-card--collection ul.splide__list .card__content {
    display: none !important;
}

Here is the result:

I hope this result

Best,

Daisy

1 Like

i didnt notice until now, the images are not clickable anymore, can you adjust this code so they are?