Move password button

I would like to move the enter using password to the body of the page under the image banner

www.peakclo.com

@peakclo it can be done using css but it can look bit weird on small screens in that case, I recommend to edit password.liquid file and get banner code under the banner, that would show it perfectly on all the screens

Thank you for the inf, would you be able to show me where the code is in the liquid file

Hello, @peakclo

  1. Go to Online Store
  2. Edit Code
  3. Find theme.css/base.css file
  4. Add the following code in the bottom
body {
    position: relative !important;
}

.password-link.link.underlined-link{
    position: absolute;  
    top: 60%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    font-size: 16px !important;  
    color: #fff;  
    background: #000;  
    padding: 10px 20px;  
    border-radius: 5px;  
    text-decoration: none;  
}

.password-link.link.underlined-link:hover {
    color: #000;  
    background: #fff;  
}

Thanks!

This did not work

@peakclo it would be in your password.liquid file, check password modal

Sorry for that, try this one @peakclo

.newsletter__wrapper>* {
    margin-top: 53px !important;
}
@media (min-width: 769px){
.password-link.link.underlined-link {
    position: absolute;
    top: 602px;
    left: -650px;
    /* transform: translate(-280%, 61rem); */
    font-size: 16px !important;
    color: #fff;
    background: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    z-index: 9999999999;
}
}
@media (max-width: 768px){
.password-link.link.underlined-link {
    position: absolute;
    top: 384px;
    left: -118px;
    /* transform: translate(-280%, 61rem); */
    font-size: 16px !important;
    color: #fff;
    background: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    z-index: 9999999999;
}
}

Result

It works but is now blocking the email signup section

No worries, add this code

.newsletter__wrapper>* {
    margin-top: 40px !important;
}

Thanks!
If you find my advice helpful please remember to LIKE and accept as SOLUTION.

unfortunately the same issue still

@peakclo Try this one

.newsletter__wrapper {
    padding-top: 80px !important;
}

I have tried multiple options for the padding tx but it does not chnage the position at all. Maybe the code needs changed

please try this code in file newsletter-section.css then paste the below code

.newsletter__wrapper>* {
    margin-top: 47px!important;
}

sorry, still the same

can you please share screen short too of code

This is the one I have been changing, no matter the px number it stays the same