Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
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
Hello, I need help, I need to move the “log in” icon higher from the mobile phone, can someone please help me?
My site is luxebrillant.com.
Solved! Go to the solution
This is an accepted solution.
HI @Bullet181
Do you mean like this?
I notice that you add another log.in in the drawer do you like me to take out the other log.in with icon?
This is an accepted solution.
Oh, I didnt provide the code yet. I just like to clarify.
Try this one.
nav.menu-drawer__navigation {
padding-bottom: 0px !important;
height: fit-content !important;
}
.menu-drawer__navigation-container {
display: flex;
justify-content: flex-start !important;
}
This is an accepted solution.
HI @Bullet181
Do you mean like this?
I notice that you add another log.in in the drawer do you like me to take out the other log.in with icon?
So the log.in that stays higher is a temporary page that i have created, but i want the main log.in to be near wishlist icon, search icon and cart icon, in the same line.
This is an accepted solution.
Oh, I didnt provide the code yet. I just like to clarify.
Try this one.
nav.menu-drawer__navigation {
padding-bottom: 0px !important;
height: fit-content !important;
}
.menu-drawer__navigation-container {
display: flex;
justify-content: flex-start !important;
}
thank you very much, you helped a lot, could you tell me more how I could put this button near to the Cart , search, wishlist
in one row to be on the mobile version,thank you again
Is it like this?
If it is then try this one.
Same Instruction.
@media only screen and (max-width: 749px){
.row.header-row {
display: flex;
justify-content: flex-end;
}
header-drawer {
order: 2;
}
.header__icons {
order: 3;
}
h1.header__heading {
margin-right: auto;
}
.header .disclosure {
margin-left: 2rem;
}
}
And Save.
You can add a custom Css inside Theme Settings:
.thb-secondary-area-item.thb-secondary-myaccount {display: inline-flex;}
I was able to accomplish this in the vision theme with that code.