Place Collection Title On Top Of Cover Image

I want the collection title to be on top of the cover image. The first image is my current page, the second image is what I want it to look like?

URL: https://www.eastsidemelrose.com/

Password: opensesame

1 Like

Hi @EastsideMelrose

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.collection-list .card__content {
    position: absolute;
    bottom: 0;
    left: 5px;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi @EastsideMelrose ,

Step 1. Go to Admin β†’ Online store β†’ Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code above


Result

Thank you, that works great! Is there anyway to be able to change the text color to white?

Hello @EastsideMelrose

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.collection-list .card__information { position: absolute; bottom: 0; left: 6%; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.collection-list .full-unstyled-link { color: #fff !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Thank you so much!

1 Like