Hi there,
I am trying to center my product quantity selector on my product page in motion theme.
Can someone please show me what code to write and where to write it?
Thanks in advance!
Center the product quantity selector in the Motion theme using CSS.
Recommended approaches:
Implementation path:
Notes:
Status:
Hi there,
I am trying to center my product quantity selector on my product page in motion theme.
Can someone please show me what code to write and where to write it?
Thanks in advance!
hi @VIVIFICAAU .,
For solve the case, you can use css, you need to detected to the element you need make centered, then use the element{ text-align: center } attribute for that.
Hi @VIVIFICAAU .
I’m Richard Nguyen from PageFly- Free Landing Page Builder
You can use “text-align: center;” or “justify-content: center;”, or can you give me store url to I can send you the correct code.
Hope this answer helps.
Best regards,
Richard | PageFly
@VIVIFICAAU
You can go to Online store => themes => actions => edit code and add this code on file theme.css
.cart__item--qty{
display: flex !important;
justify-content: center !important;
}