Theme dawn, version 12. I want my footer "email signup" and "header" be in center

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?

www.tanelwardrobe.com

www.tanelwardrobe.com

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:

  1. Go to Online Store
  2. Edit Code
  3. base.css file
@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;
}

}
1 Like

THANKS!!

Thanks!