Is there any way to make the logo image responsive? The header image I am using is full width, and it does not resize as the other images on the page do.
Thanks for your help and advice.
Is there any way to make the logo image responsive? The header image I am using is full width, and it does not resize as the other images on the page do.
Thanks for your help and advice.
Hi,
Try to use Media Queries, check css > layouts > #Media Queries section on how it is done. Basically you need this code
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 989px) {
div .logo { YOUR MODIFICATIONS HERE }
}
Place it on your custom.css
Regards,
Ismael
You must log in to post.