Hello, I want to change the position of the text and price for my featured collection from left to centre. I would also like to change the size of the price, so that it is the same size as the text because it is currently bigger than the text.
I am using dawn theme
This is my store domain: qmpryp-cx.myshopify.com
and this is my password: chasha
1 Like
Hello @ads18922
Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css.
Add the provided code at the end of the file.
.card__information {
display: flex;
align-items: baseline;
justify-content: space-between;
}
.card-information .price {
font-size: 14px;
}
.card-information {
width: auto!important;
}
Hello, could you make it so that its something like this:
1 Like
Hello @ads18922
Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css.
Add the provided code at the end of the file.
.product-card-wrapper .card__information {
text-align: center;
}
.product-card-wrapper .card-information {
text-align: center;
}
.product-card-wrapper .card__heading .full-unstyled-link {
font-weight: bold;
}
Hello, that is exactly what i want - only problem is when i enter those two codes, this is what happens to mine:
Any reason why?