please help.
-
this customized theme , how can I move the hamburger menu to the left size and make smaller?
-
how can I increase the SVG logo size in the mobile view only.
pw : 123test
thank you.
please help.
this customized theme , how can I move the hamburger menu to the left size and make smaller?
how can I increase the SVG logo size in the mobile view only.
pw : 123test
thank you.
Hi @Lavished , follow these steps:
/* Move Hamburger Menu to the Left */
.header__menu-container {
position: absolute;
left: 10px; /* Adjust this value to move further left or right */
top: 20px; /* Adjust for vertical alignment */
}
/* Resize Hamburger Menu */
.header__menu-container svg {
width: 4rem !important; /* Adjust this value for smaller size */
height: 4rem !important;
}
}
/* Increase Logo Size for Mobile */
@media (max-width: 768px) {
.logo svg {
width: 150px; /* Adjust this value for the desired size */
height: auto; /* Maintain aspect ratio */
}
}
If this solution helps you, give it a like and mark it as the accepted solution. Happy to assist further if needed!
sorry neither of the codes worked . mobile menu the same , in the center.
Hello @Lavished
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
@media screen and (max-width: 749px) {
.header__menu-container {
left: 7% !important;
top: -45px !important;
}
.header__menu-container svg {
width: 5rem !important;
height: 5rem !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks