i wanna remove large paddings from my password page..
URL: https://zappdrink.myshopify.com/password
Pass; Zapp
A user seeks to remove excessive padding from their Shopify password page, sharing a URL and screenshots showing the spacing issues.
Initial Solutions Provided:
theme.liquid or theme.css files.gta-banner, .password--password-center, and .section with padding: 0 and height: fit-content propertiesCurrent Status:
.text-center and .gta-content__container elementsTechnical Note: Some code snippets in the thread appear corrupted or reversed (text displayed backwards), which may affect implementation. The discussion remains ongoing as the user works to achieve the desired newsletter text width while maintaining the padding fixes.
i wanna remove large paddings from my password page..
URL: https://zappdrink.myshopify.com/password
Pass; Zapp
Hi @Emiway1
I hope you are well. You can follow our instructions below:
Step 1: Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
Step 2: Search for “theme.liquid” file: https://prnt.sc/b6xveIKe-Rh2
Step 3: Add the following code at the bottom of the file above tag
Here is the code for Step 3:
{% if template.nam == "password" %}
.gta-banner__content-wrap {
height: fit-content !important;
}
.gta-banner__overlay {
display: none !important;
}
.gta-banner {
height: fit-content !important;
}
.gta-banner.gsc_countdown_timer_countdown_jFkJjr::before {
display: none;
}
.password.password--center {
height: fit-content !important;
min-height: unset !important;
padding: 0 !important;
}
.section.section-blends.section-full {
padding-bottom: 0 !important;
}
{% endif %}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
Not Working
i put this code in theme.css at bottom and it working perfectly, but there is only one problem is want that newsletter text broad, i think width is so small.. wanna increse that
Hello @Emiway1
Try this Code.
{% if template.name == "password" %}
.gta-banner__content-wrap {
height: fit-content !important;
}
.gta-banner__overlay {
display: none !important;
}
.gta-banner {
height: fit-content !important;
}
.gta-banner.gsc_countdown_timer_countdown_jFkJjr::before {
display: none;
}
.password.password--center {
height: fit-content !important;
min-height: unset !important;
padding: 0 !important;
}
.section.section-blends.section-full {
padding-bottom: 0 !important;
}
Hello, @Emiway1
.text-center {
text-align: center;
padding: 14px !important;
}
.gta-content__container.gsc_countdown_timer_countdown_jFkJjr {
display: flex;
overflow: hidden;
padding: 0px !important;
border: initial;
border-radius: 16px;
}
.section.section-blends.section-full {
padding: 0px !important;
}
Thanks!