How to remove horizontal line from section

Hi. Anyone able to advise how I can remove the horizontal line from the top of the text-sections of our custom theme? Can’t seem to find it anywhere in the code.

https://this-sucks.com/

Would need to achieve this without disturbing the text animation.

Many thanks

Chris

1 Like

Hello @chrisco

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->_text.scss>Add this code at the bottom.

.shopify-section-text .text-wrapper .text-header {
    border-bottom: none;
}

Hey @chrisco

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.

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

Best Regards,
Moeed

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.min.css and paste this at the bottom of the file:
.shopify-section-text .text-wrapper .text-header {
border-bottom: none;
}

Thank you so much!!