How to remove white space on Product Page

Hello

I’m looking for a way to remove white space at the top of the Product Pages as the Vendor name does not align with the picture. Is there a way I can move everything up, using the Flow theme.

Link to a product page - Link

Thank you!

@Carrie2020 , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > timber.scss.liquid and paste this at the bottom of the file:
@media (min-width: 749px){
    .product-details-wrapper{
    padding-top: 0 !important;
    position: relative;
    top: -6px;
}
}

Kind regards,
Diego

Amazing - thanks so much for your help Diego. It looks so much better now.

You’re welcome!