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

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