Hi,
I have an image above my menu that is 2000×280. I set it to custom height in the theme options and it works fine in Internet Explorer and Firefox, but in Google Chrome it’s distorted. How can I fix it?
Hey EnvatoVato!
Setting it to a custom pixel value is going to ruin the responsiveness. Try resizing your browser to see what I mean.
I would consider leaving the width to “auto” and change the height to “min-height: 280px”.
Cheers!
Elliott
Hey Elliot,
Thank you for your quick response. I added this code to my child theme’s style.css file:
.logo img {
min-height: 280px;
width: auto;
}
It still didn’t fix my problem. It’s now responsive, but in Chrome the image is still squished. Any suggestions?
Hey!
Add this as well.
#top .logo { width: 100%; }
Regards,
Elliott
Thank you!
Worked perfectly.