Re: Help with footer layout

Solved

How can I relocate my email signup in the Dawn footer?

firststop
Excursionist
24 0 11

Hi! 

I'm using shopify dawn, and i'm looking to move my email signup/newsletter to one side of the footer. I'm adding images of what the footer looks like (blue footer)

firststop_0-1646848223438.jpeg

 

 

 

 

vs. what I want it to look like (Green footer).

 

firststop_1-1646848223478.jpeg

 

What changes do I need to make?

Accepted Solution (1)
kazi
Shopify Partner
717 100 126

This is an accepted solution.

Replace the old css with this

 

@media screen and (min-width: 750px) {

.footer-block--newsletter {
flex-direction: column;
}
.footer__content-top {
display: flex !important;
}

.footer-block:only-child li {
display: block;
}

.footer-block:only-child:last-child {
text-align: left;
}

.footer__content-top .grid {
flex-basis: 60%;
}

.footer-block--newsletter {
align-items: flex-start;
}

}

▶️ If you need more help with your Shopify store
Speed Optimization | Theme Customization ? ☎️ WhatsApp ✉️Email Skype: kof.bd

View solution in original post

Replies 5 (5)

kazi
Shopify Partner
717 100 126

@firststop  add this css  bottom  of file in Assets > sections-footer.css

 

@media screen and (min-width: 750px) {
.footer-block--newsletter {
    flex-direction: column;
}
}

 

▶️ If you need more help with your Shopify store
Speed Optimization | Theme Customization ? ☎️ WhatsApp ✉️Email Skype: kof.bd

firststop
Excursionist
24 0 11

Hello!

That made the footer into a block, i think, but it only did this.foot.jpg

kazi
Shopify Partner
717 100 126

@firststop  can you share your store URL?

▶️ If you need more help with your Shopify store
Speed Optimization | Theme Customization ? ☎️ WhatsApp ✉️Email Skype: kof.bd

firststop
Excursionist
24 0 11
kazi
Shopify Partner
717 100 126

This is an accepted solution.

Replace the old css with this

 

@media screen and (min-width: 750px) {

.footer-block--newsletter {
flex-direction: column;
}
.footer__content-top {
display: flex !important;
}

.footer-block:only-child li {
display: block;
}

.footer-block:only-child:last-child {
text-align: left;
}

.footer__content-top .grid {
flex-basis: 60%;
}

.footer-block--newsletter {
align-items: flex-start;
}

}

▶️ If you need more help with your Shopify store
Speed Optimization | Theme Customization ? ☎️ WhatsApp ✉️Email Skype: kof.bd