Is there a way to left-align the logo in the Password header in the mobile view and right-align the Password symbol including text? It doesn’t look good like this. The aim would be that both are next to each other in one line (and not one below the other). The URL is: www.kuristudios.com. Please help, thank you!
Hi @jannathn
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “section-password.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code
@media only screen and (max-width: 749px){
.password-header {
flex-direction: row;
}
.password-logo {
margin-bottom: 0px;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
This is perfect, thank you so much! It worked out!
Youre Welcome,
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @jannathn ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file password.liquid
Step 3: Paste the below code at the bottom of the file → Save
@media (max-width: 767px){
.password-header {
flex-direction: row !important;
}
}
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
