How to remove the lines under the navigation links on the header - DEBUT THEME

Topic summary

Removing the underline beneath header navigation links in the Debut theme was resolved with a CSS edit.

  • The issue was the line shown under active navigation links in the header.
  • A solution was provided after requesting the store URL.
  • The fix was to add CSS at the bottom of assets/theme.scss.liquid:
    .site-nav__link--active .site-nav__label { border-bottom-color: transparent !important; }

Outcome:

  • The original poster confirmed the code worked.
  • The discussion reached a clear resolution, with no remaining open questions.
Summarized with AI on March 8. AI used: gpt-5.4.

Hi there,

I would like to remove the lines under the navigation links on the header - see picture below

URL is healhana.com.

Thanks!

Hi there,

Pls share store URL

Thanks

@healhana

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.site-nav__link--active .site-nav__label {
    border-bottom-color: transparent !important;
}

Hope this works.

Thanks!

1 Like

Amazing it worked, thank you!