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
hi,
I want to hide the search icon and burger menu on both mobile and desktop. I’d like to move the logo to the left and button to the right on mobile.
on desktop I’d like to make it full width sk logo all the way on left and button on right.
my site is https://eftfkw-vc.myshopify.com
im using Dawn theme*
Solved! Go to the solution
This is an accepted solution.
Hi @Luxurymrkt
.header__icons {
display: none !important;
}
@media screen and (max-width: 768px){
header-drawer {
display: none !important;
}
header.header {
grid-template-areas:
"heading navigation" !important;
}
nav.header__inline-menu {
margin-left: auto !important;
}
}
I hope this helps
Best,
Daisy
This is an accepted solution.
Hi @Luxurymrkt
.header__icons {
display: none !important;
}
@media screen and (max-width: 768px){
header-drawer {
display: none !important;
}
header.header {
grid-template-areas:
"heading navigation" !important;
}
nav.header__inline-menu {
margin-left: auto !important;
}
}
I hope this helps
Best,
Daisy