Hi,
I am looking for a Code to increase the maximum logo height on my site. Currently I am only able to make it go as large as 120px for Desktop and 80px for mobile.
Site is theothelabel.com
Hi,
I am looking for a Code to increase the maximum logo height on my site. Currently I am only able to make it go as large as 120px for Desktop and 80px for mobile.
Site is theothelabel.com
Hi @JoeyRoo
Please share your store URL?
It was included in the description at the end. Site is theothelabel.com
Hi @JoeyRoo
You can increase it by adding this code to bottom of app.css file
/* increase hight for desktop */
@media only screen and (min-width: 768px) {
.logolink .logoimg {
height: 150px !important;
}
}
/* increase hight for mobile */
@media only screen and (max-width: 767px) {
.logolink .logoimg {
height: 100px !important;
}
}
Perfecto! Thank you so much ![]()
You are most welcome.