Empty space on prestige theme product page

Hi @AmirOoo ,

  1. Go to online theme → edit code → Asset → theme.css

  2. add the following code snippet to the end of file

.ProductMeta__Description, .ProductMeta__Text {
    margin: 24px 0;
    text-align: left;
    margin-top: 0px; // add this line
}

.Rte img, .Rte blockquote, .Rte .VideoWrapper, .Rte .Form {
    margin-top: 2.4em;
    margin-bottom: 2.4em;
    margin: 0; // add this line
}

.Rte p:not(:last-child), .Rte ul:not(:last-child), .Rte ol:not(:last-child) {
    margin-bottom: 1.6em;
    margin-bottom: 0px; // add this line
}
  1. there is an empty div element, the first child element of
    , but you need to delete it in one liquid file. I do not install prestige theme and have no idea about project structure.

It should look like

Hope it works.

If helpful, pls accept the solution and like it.