Hey ChandelierEmily,
Hope you’re well today ??
What you could do is reduce the logo on smaller resolutions. I’ve checked your site and this starts to happen below 1100px so what we can do is use media queries to apply CSS to reduce the logo size only for resolutions below 1100px.
If you want to do this you can try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
https://www.ads-software.com/plugins/simple-custom-css
@media screen and (max-width: 1100px) {
img#main_logo {
width: 360px;
margin-top: 22px;
}
}
Hope this helps ??
Cheers,
Bojan