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
A user encountered an unwanted border line appearing behind their logo on a Shopify theme purchased from Envato Elements.
Solution provided:
@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).
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
Try this one.
@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!
Thank You so much!
it works perfectly !