Design changes
https://mishmash.world/password
I would like to change the input field, to be one straight line with the email written above it from the footer
I would like to take away the text. 'Are you the store owner? Log in here from the footer
Please see attached
Moeed
November 4, 2024, 10:22am
2
Hey @marycrichton123
Follow these Steps:
Go to Online Store
Edit Code
Find password.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @marycrichton123 ,
To make the design changes on your website (mishmash.world):
1. Change the Input Field Design1. Log in to Shopify Admin and go to Online Store > Themes .
Click Actions > Edit code .
In Sections , find footer.liquid.
Modify the email input section to:
now add this css in theme.scss.liquid.
.footer-email-signup {
display: flex;
flex-direction: column;
}
.footer-email-signup input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.footer-email-signup label {
margin-bottom: 5px;
font-weight: bold;
}
Remove the Store Owner Login Text1. In footer.liquid find and remove or comment out the line:
Are you the store owner? Log in here.
save changes and preview your site.
Got it! If you found my suggestions helpful, please consider liking or marking it as a solution.
Your feedback is appreciated! If you have any more questions or need further assistance, just let me know.
Thanks & Regards
Akshay Bhatt
Hi @marycrichton123
Please add this code below in password.liquid file, after
Amazing, thankyou for this