Hi,
Is there a way to make the logo larger? I tried to add the following into my Simple Custom CCS plugin, but it doesn’t seem to work.
.site-logo {
max-height: 300px;
}
Thanks,
Billie Jean
Hi,
Is there a way to make the logo larger? I tried to add the following into my Simple Custom CCS plugin, but it doesn’t seem to work.
.site-logo {
max-height: 300px;
}
Thanks,
Billie Jean
Hello BJ,
You can try these css code instead:
.site-logo {
height: 300px;
max-height: none;
}
With that coding, the logo was distort and stretched. So I tried to set the width with:
.site-logo {
max-width: 700px;
}
and it worked! Huge logo, but it’s what the client wants. Thanks much!