How can I modify text placement on the Dawn theme collection page?

Hello,

I am using Dawn theme.

How can I change the text on the Collection page so that under the product image it says the Product name on left & Price on right?

Thank you,

Hey @AZ2024 ,

Hope this helps

Add this CSS into “component-card.css”.

.card__information {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
}

Thanks,

Ritu

Hi, It still doesn’t have the price totally on the right.

Hey @AZ2024 ,

In “component-card.css” find “.card-information”.

replace width: 100% with width: auto

Thanks,

Ritu

Hi,

It still is not working out correctly

Hey @AZ2024 ,

Please share the website URL here so i can check it further.

Thanks,

Ritu

Thanks for that.

Website: fe42cf.myshopify.com

Password: yeaffo

Hey @AZ2024 ,

Thanks for the url.

Please add this css in “component-card.css”

.card__information {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-information {
    width: auto !important;
}
.price {
    margin-top: 0px !important;
}

Thanks,

Ritu