Hi
Responsive feature doesn’t works if you add width and height to your logo image, you can override your logo image for every screen size, you can do this in this file templatesja_merocssthemesabstracttemplate-responsive.css
@media (min-width: 980px) and (max-width: 1199px)
.logo-image a {
background-image: url("../../../images/themes/abstract/yourlogo.png");
background-repeat: no-repeat;
width: dimension for the screenpx;
height: dimension for the screenpx;
}
@media (min-width: 768px) and (max-width: 979px) {
.logo-image a {
background-image: url("../../../images/themes/abstract/yourlogo.png");
background-repeat: no-repeat;
width: dimension for the screenpx;
height: dimension for the screenpx;
}
and so on for all screen sizes