Move product description below product form narrative theme

Hi, anyone knows how to move product description below product form also make it centralised? thanks

Hi @elitaco ,

you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community!
Please Share your store live url with password (if it password protected) where you want to do modification, so that I will solve your issue here!

hi,

url: elita.com.sg
password: clewth

thanks!

hello @elitaco

do you want to look like this https://nimb.ws/Seqon3

yes, awesome! but how do you remove the space above the variants?

.product__content-header {
    padding-bottom: 0;
}
.product__content-main {
    display: block;
}

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

hi, may i know what code to use to re-arrange it?

@elitaco - I can do it, can you add me as collaborator?

.product__content-header {
    padding-bottom: 0;
}
.product__content-main {
    display: block;
}
.product__form-container {
    width: 100%;
}

please update the code

thanks! it works but is there any way to centralise the variants?

how to centralise this whole thing in mobile view?

in mobile view

hello @elitaco

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.product-template .product__content-main {
    width: 90%;
    margin: 0 auto;
}
.product-template .product__content-main {
    width: 90%;
    margin: 0 auto;
}

hello @elitaco

for center content in mobile

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media screen and (max-width: 729px){
  .product-template .vario-all-variant-wrapper{
    text-align: center;
}

.product-template .vario-variants{
      justify-contact:center ;
}
}

hi, the code doesn’t work. the page could not load at all when refreshed

.product__content .grid {
    margin: 0;
}

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid