How to remove a border line that is displaying behind logo?

Topic summary

A user encountered an unwanted border line appearing behind their logo on a Shopify theme purchased from Envato Elements.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom:
@media only screen and (min-width: 1200px) {
  .header-type-1 .site-header__logo {
    border-bottom: none !important;
  }
}

Outcome: The solution successfully removed the border line. The issue was resolved by targeting the specific header logo element with CSS to hide the bottom border on desktop screens (1200px and wider).

Summarized with AI on November 15. AI used: claude-sonnet-4-5-20250929.

Hello,

I’m using a theme that I got from Envato Elements.

It’s working great,

I’m trying to delete the border line that is displaying behind the LOGO.

Any help will be appreciated

https://f92ae2.myshopify.com/

1 Like

Hi @sergio-silva

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (min-width: 1200px){
.header-type-1 .site-header__logo {
    border-bottom: none !important;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank You so much!

it works perfectly !

1 Like