How can I eliminate the thin white line under my website header?

Hi. I am trying to remove the thin white line, which is currently on the bottom of my header if someone can please assist. Website is theothelabel.com

Thanks,

Joey

There is usually a setting in the theme editor that allows you to remove it. If not, you can remove it with code:

  1. Navigate to the code editor: Online Store → Themes → Edit code → assets → app.css

  2. Add the following CSS code to the bottom of the file:

header#header {
    border-bottom: none;
}

Let me know how it goes!

You rock! This worked, thanks.

Happy to help!