We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Can the email signup section be moved into the footer?

Can the email signup section be moved into the footer?

mollycakes
Excursionist
22 0 7

I'm not sure this can be done but worth a shot. My current footer is 2 sections with a gradient. I have the Email Signup section then the Footer section.

Website

Screenshot 2024-07-19 at 9.30.12 AM.png

However the gradients do not flow seamlessly on mobile. The colors don't match and scroll with each other.

Screenshot 2024-07-19 at 9.23.25 AM.png

 

Here is how it looks on iphone.

IMG_9906.PNG

Is it possible to move the email signup section into the footer section to get around the gradient issue or is there a fix for the gradient issue?

 

This is how I would like it to look on mobile as well.

Screenshot 2024-07-19 at 9.22.47 AM.png

Replies 6 (6)

BSS-TekLabs
Shopify Partner
2401 695 836

- Here is the solution for you @mollycakes 
- Please follow these steps:

step.png

- Then find the theme.liquid file.
- Then insert this code above </head> tag

 

<style>
.gradient {
    background: var(--gradient-background) !important;
    background-attachment: fixed !important;
}
@media screen and (max-width: 767px) {
    .gradient {
    background: var(--gradient-background) !important;
    background-attachment: fixed !important;
}
}
</style>

 

- Here is the result you will achieve:

BSSTekLabs_0-1721397707423.png

 

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
mollycakes
Excursionist
22 0 7

Thank you but unfortunately it didn't work.

mollycakes
Excursionist
22 0 7

This is the result I see for iphone.

IMG_9906.PNG

mollycakes
Excursionist
22 0 7

If I add the following to Custom CSS it looks like the below screen shot. Which is closer. If I apply fixed it changes to solid color.

@media screen and (max-width: 767px) {
  .gradient {
    background-attachment: local !important;
  }
}

 

IMG_9908.PNG

 

 

BSS-TekLabs
Shopify Partner
2401 695 836

add this to line 30 file footer.liquid

<footer class="footer color-{{ section.settings.color_scheme }} gradient section-{{ section.id }}-padding" style="background: var(--gradient-background) !important; background-attachment: fixed !important;">

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2401 695 836

BSSTekLabs_0-1721400228012.png

 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now