Logo responsive Issue

I resposnive site properly on mobile veiw but site logo is not showing responsive on mobile veiw please anyone guide to how to solve this problem thanks.

Hi @mburn

Trust you are doing great.

I have checked the website URL that you have shared and page is rendering fine on mobile view.

Logo is looking liitle bit bigger in size.

To reduce same you can add below CSS

@media(max-width:767px)
{
.site-logo.mobile-header-logo img {
height: 70px !important;
width: auto !important;
}
}

Kindly check and let me know if that would work for you.

Thanks

Niharika Goyal