hey!
i am trying to center align “you may also like” on the page, and center align text and product prize underneath the product image within the “you may also like” section.
thank you for your help!
btw, I am using Dawn theme
Hi @MatthiasD ,
I do not recommend you center the “You may also like” section because it may break the layout in the future.
To make title and price center-aligned, you can follow the steps:
.card-information__wrapper > * {
line-height: calc(1 + 0.4 / var(--font-body-scale));
color: rgb(var(--color-foreground));
padding-right: 0;
text-align: center;
}
.card-information__wrapper > .price > div {
width: 100%;
}
PS: please use [email removed] to mention me because I turn off email notifications.
thanks @GavinChan , you are an absolute legend!