Moving product description below price (Brooklyn Theme)

Hey,

Really hoping someone can help…

Does anyone know if it’s possible, and if so, how to move the product description just below the price on the Brooklyn theme? (Mobile View)

(Screenshot below)

Any help would be very much appreciated.

url: https://www.notacard.com/products/black-bottle-whisky-whisky-stones-in-velvet-bag

Yes, you can do it in your code editor. There should be a product-template where you can rearrange everything. You have to look for the div with the classes “product-single__description rte”. After your change it should look like this:

1 Like

Huge thank you @DP_Development

It worked perfectly!

Do you know how i would move it up slightly? or centrally align it? (Screenshot below)

Thanks again!

Yes, you have to edit one class:

.product-single__description {
    margin-top: 20px;
    text-align: center;
}

And also delete the container below the price, which is just a placeholder:

1 Like

It worked perfectly. Thank you!