Kiwart
April 14, 2026, 9:27pm
1
Hello and thanks for every experienced developer who might help
I have problem with moving part inside my dawn theme . Its mobile version problem
Its not centered for burger and close tab on mobile
I will message header custom liquid hero and header.liquid
Hi @Kiwart
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
Best regards,
Devcoder
Moeed
April 15, 2026, 4:45am
4
Hey @Kiwart
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Hey @Kiwart Welcome to Shopify Community can you please share the Website URL
Kiwart
April 15, 2026, 5:46am
6
Privateviewscreen.com password 16 (two digits)
Kiwart
April 15, 2026, 5:46am
7
Moeed
April 15, 2026, 5:54am
9
Hey @Kiwart
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above </ body> tag
<style>
.header__icon--menu[aria-expanded="false"] svg.icon.icon-close {
display: none !important;
}
.header__icon--menu[aria-expanded="true"] svg.icon.icon-hamburger {
display: none !important;
}
</style>
RESULT:
Hope that helps! If it did, a Like and Marking it as Solution goes a long way and helps others find the fix faster too.
Best,
Moeed
Good day @Kiwart . To fix this icon alignment issue, please follow the steps below:
Go to Online Store in your Shopify admin.
Click Edit Code, then open base.css (or your custom CSS file).
Paste the CSS code provided below into the file.
@media screen and (max-width: 989px){
.header details#Details-menu-drawer-container:not(.menu-opening) .icon-close {
display: none;
}
.header .menu-opening .icon-hamburger {
display: none;
}
}
I’ve also attached screenshots for your reference, so you can easily follow along.
If you have any questions or need further assistance, please don’t hesitate to ask.
If this solution helps you, please don’t forget to like and accept it.
Best Regards,
(S.P)
hii @Kiwart please use this css in base.css paste in the bottom of the file, hope this will work.
details:not([open]) > .header__icon–menu .icon-close, details[open] > .header__icon–menu .icon-hamburger {
display: none;
}
tim_1
April 15, 2026, 1:19pm
12
Here is my suggestion.
Find this code
Add display: none; right above the closing curly brace.
Or, if you do not want to modify theme code, you can add a rule to the Theme Settings-> Custom CSS:
details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
display: none;
}
Kiwart
April 15, 2026, 2:37pm
13
Thank you Moeed! It works perfectly.
Can I adress other little bug I have and don’t know where it came from?
Its this bar on the menu of mobile .. Its blue and I even have it on ladning page but the blur is too big and can’t be seen