Centering Quantity Selector

Solved

Centering Quantity Selector

cravingravioli
Tourist
26 0 1

cravingravioli_0-1724144876374.png
Hi, looking to center the Quantity and the Quantity selector. Tried using css code from other forums but it was still misaligned. Thanks.

 

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
11414 2241 2413

This is an accepted solution.

Hi @cravingravioli 

Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings 

.product-form__input {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100% !important;
}

Screenshot 2024-08-20 at 16.35.58.png

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Replies 7 (7)
cravingravioli
Tourist
26 0 1

rehydrazn.com
pw: nowlow

niraj_patel
Shopify Partner
2391 516 515

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px) {
div.product-form__quantity {
display: flex;
flex-direction: column;
align-items: center;
}
}

</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

 

if this not worked then share your store URL and password if any please.
so i can check and provide you possible solution for your question.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
cravingravioli
Tourist
26 0 1

Don't know if I copied something wrong but it did nothing

niraj_patel
Shopify Partner
2391 516 515

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px) {
   div.product-form__quantity {
       text-align: center !important;
   }
   div.product-form__quantity .price-per-item__container {
        display: flex !important;
        align-items: center !important;
         justify-content: center !important;
    }
}

</style>

niraj_patel_0-1724146174909.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
cravingravioli
Tourist
26 0 1

cravingravioli_0-1724146516892.png

cravingravioli_1-1724146530212.png

added the code and it was still in the same spot, am i adding something wrong?

Dan-From-Ryviu
Shopify Partner
11414 2241 2413

This is an accepted solution.

Hi @cravingravioli 

Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings 

.product-form__input {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100% !important;
}

Screenshot 2024-08-20 at 16.35.58.png

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

cravingravioli
Tourist
26 0 1

Worked, thank you.