Tagged: logo size
Hello,
thank you for your help. Is it possible to have a bigger logo (see the green area on the screenshot: https://prnt.sc/j65xia)
Its on the website: https://www.unionmondsee.at/
Thank you!
Best regards,
Alex
Hey Alex,
Do you mean that you want the logo to expand over the area you have indicated in green?
Best regards,
Rikard
Hi Rikard,
yes, exactly! Thank you!
Alex
Anybody? ;)
Thanks,
Alex
Hi Alex,
Please try the following in Quick CSS under Enfold->General Styling:
span.logo, span.logo img {
width:100% !important;
min-width: 100%;
}
Best regards,
Rikard
Thank you! And is there an option to enable this only on desktop but not on smartphone devices?
thanks!
Alex
Hi Alex,
Yes, please try this instead:
@media only screen and (min-width: 768px) {
span.logo, span.logo img {
width:100% !important;
min-width: 100%;
}
}
It will apply on desktop and tablet, but not on mobile. If you want to include tablets then change 768 to 1025.
Best regards,
Rikard