What's your biggest current challenge? Have your say in Community Polls along the right column.

How To Remove Padding Between Sections?

Solved

How To Remove Padding Between Sections?

Emiway1
Shopify Partner
44 0 6

i wanna remove large paddings from my password page..

URL: https://zappdrink.myshopify.com/password

Pass; Zapp

Screenshot 2024-11-27 125249.pngScreenshot 2024-11-27 125302.png

 

Accepted Solution (1)

topnewyork
Globetrotter
748 124 139

This is an accepted solution.

Hello, @Emiway1 

1) Go to Online Store
2) Edit Code
3) Find theme.css/base.css file
4) Add the following code in the bottom

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

Need a Shopify developer?
Hire us at Top New York Web Design
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Try Big Bulk Discount To Boost Your Store Sales with Volume/Tier Discount

View solution in original post

Replies 5 (5)

DaisyVo
Shopify Partner
985 124 140

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 </head> 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 %}

 

 

image (1).png


Please let me know if it works. Thank you!

 

Best,
Daisy - Avada Support Team.

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
Emiway1
Shopify Partner
44 0 6

Not Working

Emiway1
Shopify Partner
44 0 6

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

Screenshot 2024-11-27 132908.png

 

ZestardTech
Shopify Partner
5912 1067 1413

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;
}

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

topnewyork
Globetrotter
748 124 139

This is an accepted solution.

Hello, @Emiway1 

1) Go to Online Store
2) Edit Code
3) Find theme.css/base.css file
4) Add the following code in the bottom

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

Need a Shopify developer?
Hire us at Top New York Web Design
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Try Big Bulk Discount To Boost Your Store Sales with Volume/Tier Discount