I want to make my logo bigger in mobile. I like the size of it in desktop but want it bigger in mobile.
Any help would be greatly appreciated.
I want to make my logo bigger in mobile. I like the size of it in desktop but want it bigger in mobile.
Any help would be greatly appreciated.
Hey @StellarFae
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @StellarFae ,
Go to online online store > themes > edit code > search base.css file
Add the following code in the base.css file at the bottom
@media screen and (max-width: 990px) {
[id] .header__heading-logo {
max-width: 120px !important;
}
}
@media screen and (max-width: 767px) {
[id] .header__heading-logo {
max-width: 120px !important;
}
}
And Save the file.
Thanks!