How can I center align content in mobile view?

Hi everyone. I want to centre align the content when in mobile view. I would like the buttons and price to be displayed in the centre of the page as well.

Thank you for your help.

https://decru-vintage.myshopify.com/products/80s-bomber

pass: gluvia

Hello @Jess2021 ,

  1. Go to Online Store->Theme->Edit code
  2. Asset->theme.css-> paste bellow code in bottom of file
@media only screen and (max-width:749px){
.product__price {
    display: inline-block;
}
.product-form {
    margin: 0 auto;
}
}

Thanks

2 Likes

THANK YOU! this has worked perfectly.

1 Like