Hello,
I’m trying to move the logo to the center on Mobile view.
Can anyone help me with this issue?
Thank you
Hello,
I’m trying to move the logo to the center on Mobile view.
Can anyone help me with this issue?
Thank you
Hello There,
@media only screen and (max-width: 749px){
.site-header__logo {
padding-left: 30%!important;
}
}
Hi @red33med ,
Please place this code at the end of the “theme.scss” file:
@media only screen and (max-width: 749px) {
.site-header__logo img {
margin: 0;
}
.site-header__logo {
padding-left: 22px;
text-align: left;
height: 63px;
}
}
Screenshot to refer: https://prnt.sc/11j0n4r
Hope to this helps.
@red33med please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media only screen and (max-width: 749px){
.site-header__logo {
justify-content: center !important;
display: flex !important;
}
}