Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Change position of text and price on featured collection

Change position of text and price on featured collection

ads18922
Excursionist
60 0 26

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.

Screenshot 2024-11-09 at 21.34.55.png

I am using dawn theme

This is my store domain: qmpryp-cx.myshopify.com

and this is my password: chasha
Replies 4 (4)

devcoders
Shopify Partner
546 78 141

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;
}

 

devcoders_0-1731225531629.png

 

 

Shopify Developer: Helping eCommerce Stores

If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
ads18922
Excursionist
60 0 26

Hello, could you make it so that its something like this:

IMG_2162.jpg

devcoders
Shopify Partner
546 78 141

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;
}

devcoders_0-1731233448550.png

 

 

Shopify Developer: Helping eCommerce Stores

If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
ads18922
Excursionist
60 0 26

Hello, that is exactly what i want - only problem is when i enter those two codes, this is what happens to mine:

Screenshot 2024-11-11 at 10.11.16.png

Any reason why?