How can I increase the maximum logo height on my website?

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 :slightly_smiling_face:

You are most welcome.

I cannot find app.css in the coding on my website. I can only find base.css. Do you have any other ways to go about this? The template I am using is Tinker.

Thanks in advance!