Padding above the product title BASELINE THEME

I want there to be less of a gap above the product title but only on mobile only

The preview is https://ybrwvy05yccjctoo-29058498693.shopifypreview.com

Hi @ChiNG18 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.min.css->paste below code at the bottom of the file:
@media (max-width: 767px) {
.template-product .grid > .text-primary-text {
    padding-bottom: 0 !important;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.