Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hey, im trying to completely remove the 1px white header border on this website, it only appears when you scroll/sticky header. The theme is Motion, appreciate the help!
PW: sheta
Solved! Go to the solution
This is an accepted solution.
@Anonymous
yes, please add this code
1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css ->paste below code at the bottom of the file.
.site-header { border-bottom: none !important;}
Hi @Anonymous
You can try follow this path:
Themes => edit code => asset => theme.css
and add this code to bottom of the file theme.css
.site-header{
border: none!important;
}
This is an accepted solution.
@Anonymous
yes, please add this code
1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css ->paste below code at the bottom of the file.
.site-header { border-bottom: none !important;}