Hey, i have a question i have changed the icons on my debut header but when i go to mobile it shows up weird and also the menu and close button show at the same time on mobile.
does anyone know the solutions to this? you can email me or reply here pls!
it looks like this on mobile rn but i want to keep te logo in the middle.
Website: Scepticalclothing.com
Password: Drop2
1 Like
Hi @ScepticalClo ,
You might have not copied the class added to the SVG. Anyways, you can follow the instructions below to fix it
- From your Admin Page, click Online Store > Themes >Actions > Edit code
- In the Asset folder, open the theme.css
- Paste the code below at the very bottom of the file.
@media only screen and (max-width: 750px) {
.mobile-nav--open svg:nth-child(2) {
display: none;
}
.mobile-nav--close svg:nth-child(2) {
display: block;
}
.mobile-nav--open svg:nth-child(1) {
display: block;
}
.mobile-nav--close svg:nth-child(1) {
display: none;
}
}
1 Like
ayy bro thanks it works, do you maby know how to fix the cart and login logo to where it sits correct with padding and margins just like this:
only then with the icons i have know on the right, these:
thanks in advance!
1 Like
Hi @ScepticalClo ,
I do not see this problem in 452px above screen size. Mobile screen size is usually 481px
Hey Yeah i see it now as correct aswell, it was probably a glitch for me lol. Thanks a lot for helping have a nice day!
1 Like