How can I center my online shop logo on mobile devices?

Hello There,

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

@media screen and (max-width: 749px){
.logo-align–left .site-header__logo{
z-index: -1;
}

.site-header__icons .btn–link.site-header__icon.site-header__search-toggle {
position: absolute;
left: 42px;
}
}

1 Like