Removing short horizontal lines between headings and body on pages and between sections.

I am using the Brooklyn theme and I am trying to remove all the short horizontal lines that separate the headings from the body text on all the pages/sections. I would also like to remove all the excess space that is between each section.

Hi @notyethome ,

You can hide them by adding this CSS code below at the bottom of theme.scss.liquid file in Shopify admin > Online Store > Themes > Live theme (Brooklyn) > Actions > Edit code > Assets

hr, .hr--small, .hr--medium, .hr--large { display: none !important; }

Hi @notyethome ,

Go to Actions > Edit code > Assets > theme.scss.liquid and paste this at the bottom of the file:

hr, .hr--small, .hr--medium, .hr--large {
  display: none !important;
}

Hope it helps!

Worked perfect! Thank you so much!

Hi @notyethome ,

If it helped you solve your issue, please mark it as a solution. Thank you and good luck.