Remove 'Description' Headline from description section

I would like to remove this headline that says “Description” from my description section

My store is https://ywm4h9knwo8uwzf7-87026893093.shopifypreview.com/products/moissanite-cross-stud-earrings?variant=49303975756069

any help would be appreciated

Hey @sibouss

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @sibouss

This is Amelia from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

h2.wb_proleft_head {

display: none;

}

Hope that my solution works for you.

Best regards,

Amelia | PageFly

Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> section-main-product.css
add this at the end of the file.

.product__description h2.wb_proleft_head {
display: none !important;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

Hello @sibouss

Go to online store > Edit theme code > section-main-product.css > Insert the code at the bottom of this file “section-main-product.css” .

body .product__description h2.wb_proleft_head {
    display: none;
}