Hi everyone, I would like to make the size of my logo smaller on my smartphone. Do you know how to do it? Thank you all
password: refade
Hello @Marco211 !
You can use this css code to adjust the logo size for mobile device:
@media only screen and (max-width:748px){
.header__heading-logo {
width: 49% !important;
}
}
Thanks.