How To Align Product Description in Venue Theme

Hello,

I’ve been trying to center the text in product page. But i could not worked it out yet.

https://mealkaline.com/collections/programlar/products/guzellik-programi

This is a example product page you can see at the desktop that description is not aligned correctly.

Tried some code found on google but i guess the Venue theme does not work that way.

Would you help?

Hi,

To center the description, please add the code below to assets/theme-critical.css (or assets/theme.css) file.

.o-layout.o-layout--reverse.u-flex, .product-single__bottom {
  display: flex;
  justify-content: center;
}

If you want to remove the gray box, please add the code below to assets/theme-critical.css file (after the code above).

div.product-single__bottom>div.o-layout--reverse>.o-layout__item {
  display: none;
}

If you have any question, please let me know.

Hope it helps.

Thanks.