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,
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
Hey @AZ2024 ,
In “component-card.css” find “.card-information”.
replace width: 100% with width: auto
Thanks,
Ritu
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