How can I remove gray lines between sections on my website?

hi can someone help me remove the gray lines in between sections on my website. I have tried copying and pasting code from others discussions but none seem to work. Any help is greatly appreciated. Below you can see the lines that i am having problems with.

Hi @vertxem

Kindly share your website URL.

https://vertxem.com/

Add this CSS code Online Store > Themes > Edit code > Assets > custom.css or theme.css.

#shopify-section-main-password-header hr, #shopify-section-main-password-footer hr { display: none; }

Hi @vertxem ,

You can add this code to hide it:

  • From your Shopify admin, navigate to Sales Channels > Online Store > Themes > Actions > Edit code

  • Find the base.css under the Assets section

  • Paste this code at the bottom of the base.css file:

hr {
    display: none; !important
}
  • Hit Save

I hope it helps.

1 Like