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
9190 1839 1872

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

- Helpful? Like and Accept solution! - Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 8 (8)

goldi1
Excursionist
104 8 23

HELLO @cravingravioli 

Can you please send me the Website URL.

Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639
Whatsapp Me : here
cravingravioli
Tourist
26 0 1

rehydrazn.com
pw: nowlow

niraj_patel
Shopify Partner
2378 514 511

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
2378 514 511

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
9190 1839 1872

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

- Helpful? Like and Accept solution! - Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

cravingravioli
Tourist
26 0 1

Worked, thank you.