Hi!
im looking to center my “email signup” and “heading”. Only for Desktop view.
How i can do it?
Hi!
im looking to center my “email signup” and “heading”. Only for Desktop view.
How i can do it?
Hi @Tanel , can you share your store url?
Go to section-footer.css and and add the following code
@media (min-width : 767px){
.footer-block--newsletter {
flex-wrap: nowrap;
justify-content: center;
text-align: -webkit-center;
}
}
Follow these Steps:
@media (min-width : 767px){
.footer-block__newsletter {
display: flex;
flex-direction: column;
align-items: center;
}
block--newsletter.scroll-trigger.animate--slide-in {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}
THANKS!!
Thanks!