Logo is too big for mobile. How to fix that?

You need to change the size of the mobile logo before uploading it on Theme Options> General Options> Logo

NOTE:

If your logo is too big or too small on the mobile screen. You can change it by adding a custom CSS

Go to Theme Options > Styling Options > CSS Custom and paste the code below. You can change the width of logo you want. For example, I change my logo to 135px

				
					@media screen and (max-width: 991px)
.header__left .logo img {
    width: 135px!important;
}
				
			
General Options Image 6

Now, you can see how your logo has changed on mobile devices

General Options Image 5

$79