lwshop
December 10, 2021, 2:48am
1
Hey! How do I remove these lines + the search button from the prestige theme?
I tried to turn off the “separation border” in the theme editor but it doesn’t do the trick.
Would be much appreciated if anyone has the code to remove these things.
Thanks in advance !
1 Like
system
December 10, 2021, 2:50am
2
Send me your store URL,
I can give me best solution.
Thank You.
1 Like
lwshop
December 10, 2021, 2:57am
3
system
December 10, 2021, 3:27am
4
hii, @lwshop
Paste this code on bottom of the theme.scss file.
header#section-header {
box-shadow: none !important;
}
a.Header__Icon.Icon-Wrapper.Icon-Wrapper--clickable:nth-child(1) {
display: none !important;
}
2 Likes
lwshop
December 10, 2021, 3:49am
6
The lines and search is still visable on mobile tho, is there any way to fix this?
saimii
December 10, 2021, 4:18am
7
Hey,
I would be able to help you if I have link to your website.
I can send couple of codes lines which you can add to hide them but for that I can have to check your code classes.
system
December 10, 2021, 4:30am
8
@lwshop
For mobile paste this code on bottom of the theme.scss file.
header#section-header {
box-shadow: none !important;
}
lwshop
December 10, 2021, 4:35am
9
Hey, that still didn’t work for mobile
lwshop
December 10, 2021, 4:36am
10
https://lwlwlw.myshopify.com/
pass:twawid
Thanks, the only thing left to do is to hide the line + search bar on mobile as well
Hello @lwshop ,
Add the below code to perform the solution in mobile as well:
@media screen and (max-width: 768px) {
header#section-header {
box-shadow: none !important;
}
a.Header__Icon.Icon-Wrapper.Icon-Wrapper--clickable:nth-child(1) {
display: none !important;
}
}
lwshop
December 10, 2021, 4:56am
12
Thanks for the input, itsadly didn’t work tho.
svg.Icon.Icon--search {
display: none !important;
}
@media only screen and (min-width: 600px) {
header#section-header {
box-shadow: none !important;
}
}
@lwshop
Add this code. in theme.css or style.scss
Where you have added code.
@lwshop !
.Header__Icon .Icon--search {
display: none !important;
}
.Header {
box-shadow: 0 0px var(--header-border-color) inset !important;
}
Try this
1 Like
lwshop
December 10, 2021, 5:17am
18
that doesn’t work either haha, very weird.
@lwshop ,
Can I send you the collaboration access request to perform the solution by me?
1 Like