02/15/2019 at 7:53 pm
#484772
Keymaster
@ Josh
This is being cause by a style in the theme:
@media only screen and (max-width: 767px)
.responsive #top .logo {
position: static;
display: table;
height: 80px !important;
float: none;
padding: 0;
border: none;
width: 80%;
}
Notice the width and height.
Try adding this to the theme’s custom CSS area, generally found in the theme Customizer:
@media only screen and (max-width: 767px) {
#cn-list span.cn-image-style img.cn-image.logo {
width: auto !important;
height: auto !important;
}
}
Hope this helps!
