Logo with Text block image not centered in Mono theme on mobile

Logo with Text block image not centered in Mono theme on actual mobile even though it shows it as centered in the theme customizer mobile view. It’s an image as the logo with text hidden. The second footer block with the menu is center aligned on mobile perfectly. On desktop both are laid out fine. Your help is appreciated! Thanks!

https://everlandstitch.com/

Hi,

Hope this will help

  • Check “Logo with Text” block. and add custom css

CSS code example

@media screen and (max-width: 749px) {
  .footer__block--logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer__block--logo img {
    margin: 0 auto;
    display: block;
  }
}

Thank you for the suggestion but unfortunately it didn’t work. Any other suggestions?