Design help (2 tasks)

Design changes

https://mishmash.world/password

  1. I would like to change the input field, to be one straight line with the email written above it from the footer

  2. I would like to take away the text. 'Are you the store owner? Log in here from the footer

Please see attached

Hey @marycrichton123

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find password.liquid file

  4. 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.

  1. Click Actions > Edit code.

  2. In Sections, find footer.liquid.

  3. 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 thank you

Amazing, thankyou for this