Hello, I’m having issues with my logo in mobile view.
I tried to apply this CSS code:
/* Size for logo in Mobile */
.custom-logo {
max-width: 180px;
}
/* Size for logo in bigger devices */
@media screen and (min-width: 1024px) {
.custom-logo {
max-width: 180px;
}
}
but nothing happens. This is my webpage:
Thanks!