Help for collections style

Solved

Help for collections style

PAUL8
Tourist
44 0 18

Hello, 

I want my collection on my home page to look like this, can you help me? With this shape, size, and the collection text on the right bottom. I send you the picture of the result I want.

I use theme dawn: my website is womber.fr and the password is PROPAGANDAAA

Thanks!

Cordially,

 

PAUL8_0-1727031304488.png

 

Accepted Solutions (3)

Made4uo-Ribe
Shopify Partner
8274 1985 2435

This is an accepted solution.

Hi @PAUL8 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

<style>
@media screen and (max-width: 749px) {
.section-collection-list .collection-list:not(.slider) {
        padding-left: 0;
        padding-right: 0;
}
.collection-list-wrapper.page-width.isolate.no-heading.no-mobile-link.section-template--22415287386377__collection_list_KzNFVH-padding {
    padding: 0 !important;
}
.section-template--22415287386377__collection_list_KzNFVH-padding .card--standard .card__inner, 
.section-template--22415287386377__collection_list_KzNFVH-padding .card .card__inner .card__media {
    border-radius: 0 !important;
    background: transparent;
}


.section-template--22415287386377__collection_list_KzNFVH-padding .card__content {
    position: absolute;
    bottom: 10px;
    right: 0%;
}

.section-template--22415287386377__collection_list_KzNFVH-padding h3.card__heading {
    color: #fff;
}
.section-collection-list .collection-list:not(.slider) {
    gap: 0;
}

.section-template--22415287386377__collection_list_KzNFVH-padding .card__information {
    text-align: right;
}
}


</style>

 

And Save. 

result:

Made4uoRibe_0-1727034071466.png

 

 

 

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

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Made4uo-Ribe
Shopify Partner
8274 1985 2435

This is an accepted solution.

yeah sure. Add this one. 

 

.section-template--22415287386377__collection_list_KzNFVH-padding .card__content {
    position: absolute;
    bottom: 0;
}
.section-template--22415287386377__collection_list_KzNFVH-padding .card__information {
    text-align: right;
    padding-right: 10px;
}
.section-template--22415287386377__collection_list_KzNFVH-padding h3.card__heading {
    color: #fff;
}
.section-template--22415287386377__collection_list_KzNFVH-padding a.full-unstyled-link {
      padding-right: 10px;
}

 

And Save. 

Result:

Made4uoRibe_0-1727039841501.png

 

 

 

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

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Made4uo-Ribe
Shopify Partner
8274 1985 2435

This is an accepted solution.

Replace this code. 

Made4uoRibe_0-1727263838664.png

 

To this one. 

 

 

@media screen and (min-width: 990px) {
.grid--2-col-desktop .grid__item {
    width: calc(30% - (var(--grid-desktop-horizontal-spacing) / 3));
    max-width: calc(33% - (var(--grid-desktop-horizontal-spacing) / 3));
}
}
.card__content {
    position: absolute;
    bottom: 0;
}
.card__information {
    text-align: right;
    padding-right: 10px;
}
h3.card__heading {
    color: #fff;
}
 a.full-unstyled-link {
      padding-right: 10px;
}

 

 And Save. 

 

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

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 10 (10)

Made4uo-Ribe
Shopify Partner
8274 1985 2435

This is an accepted solution.

Hi @PAUL8 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

<style>
@media screen and (max-width: 749px) {
.section-collection-list .collection-list:not(.slider) {
        padding-left: 0;
        padding-right: 0;
}
.collection-list-wrapper.page-width.isolate.no-heading.no-mobile-link.section-template--22415287386377__collection_list_KzNFVH-padding {
    padding: 0 !important;
}
.section-template--22415287386377__collection_list_KzNFVH-padding .card--standard .card__inner, 
.section-template--22415287386377__collection_list_KzNFVH-padding .card .card__inner .card__media {
    border-radius: 0 !important;
    background: transparent;
}


.section-template--22415287386377__collection_list_KzNFVH-padding .card__content {
    position: absolute;
    bottom: 10px;
    right: 0%;
}

.section-template--22415287386377__collection_list_KzNFVH-padding h3.card__heading {
    color: #fff;
}
.section-collection-list .collection-list:not(.slider) {
    gap: 0;
}

.section-template--22415287386377__collection_list_KzNFVH-padding .card__information {
    text-align: right;
}
}


</style>

 

And Save. 

result:

Made4uoRibe_0-1727034071466.png

 

 

 

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

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
PAUL8
Tourist
44 0 18

Thanks! And can you help me to have the collection name on the bottom right on the desktop version? 

Made4uo-Ribe
Shopify Partner
8274 1985 2435

This is an accepted solution.

yeah sure. Add this one. 

 

.section-template--22415287386377__collection_list_KzNFVH-padding .card__content {
    position: absolute;
    bottom: 0;
}
.section-template--22415287386377__collection_list_KzNFVH-padding .card__information {
    text-align: right;
    padding-right: 10px;
}
.section-template--22415287386377__collection_list_KzNFVH-padding h3.card__heading {
    color: #fff;
}
.section-template--22415287386377__collection_list_KzNFVH-padding a.full-unstyled-link {
      padding-right: 10px;
}

 

And Save. 

Result:

Made4uoRibe_0-1727039841501.png

 

 

 

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

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
PAUL8
Tourist
44 0 18

Hello, 

Your solution was very great, can you help me to do the same on this page of my website? 
thanks!

PAUL8_0-1727204506875.png

 



Made4uo-Ribe
Shopify Partner
8274 1985 2435

Oh, I only add this one on the homepage collection. 

Replace the code above. 

With this one. 

 

@media screen and (min-width: 990px) {
.grid--2-col-desktop .grid__item {
    width: calc(30% - (var(--grid-desktop-horizontal-spacing) / 3));
    max-width: calc(33% - (var(--grid-desktop-horizontal-spacing) / 3));
}
}
.card__content {
    position: absolute;
    bottom: 0;
}
.card__information {
    text-align: right;
    padding-right: 10px;
}
h3.card__heading {
    color: #fff;
}
 a.full-unstyled-link {
      padding-right: 10px;
}

 

And Save. 

Result:

Made4uoRibe_0-1727261971761.png

 

 

 

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

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
PAUL8
Tourist
44 0 18

What do I have to delete and what do I have to replace? 

Made4uo-Ribe
Shopify Partner
8274 1985 2435

This is an accepted solution.

Replace this code. 

Made4uoRibe_0-1727263838664.png

 

To this one. 

 

 

@media screen and (min-width: 990px) {
.grid--2-col-desktop .grid__item {
    width: calc(30% - (var(--grid-desktop-horizontal-spacing) / 3));
    max-width: calc(33% - (var(--grid-desktop-horizontal-spacing) / 3));
}
}
.card__content {
    position: absolute;
    bottom: 0;
}
.card__information {
    text-align: right;
    padding-right: 10px;
}
h3.card__heading {
    color: #fff;
}
 a.full-unstyled-link {
      padding-right: 10px;
}

 

 And Save. 

 

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

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
PAUL8
Tourist
44 0 18

And finally, can you edit the code? Because now I have products like this and I don't want them... I just wanted the collection like this

PAUL8_0-1727274358107.png

 

Made4uo-Ribe
Shopify Partner
8274 1985 2435

Did you already solved this one? 

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.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
PAUL8
Tourist
44 0 18

Yes thanks i