New Shopify Certification now available: Liquid Storefronts for Theme Developers

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

Solved
sergio-silva
Tourist
5 0 3

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/

 

sergiosilva_0-1698962343052.png

 

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
4202 967 1175

This is an accepted solution.

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;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1698962854545.png

     

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

Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


View solution in original post

Replies 2 (2)
Made4uo-Ribe
Shopify Partner
4202 967 1175

This is an accepted solution.

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;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1698962854545.png

     

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

Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


sergio-silva
Tourist
5 0 3

Thank You so much!

it works perfectly !