hi folks
enfold is without a doubt the best them i have used in many years, with one glaring issue – mobile logo size. i have just sat here for hours attempting every quick css fix for logo size and nothing appears to do the job satisfactorily! can i please have a fix to display the logo on http://www.handhcatering.com.au centred in the header area and sized appropriately across all devices?
thanks
A
Can I have a response on this ticket, please?
A
Hi,
Do you want it centered only on mobile sizes? If so then please try this in Quick CSS:
@media only screen and (max-width: 767px) {
.responsive #top .logo {
width: 100%;
text-align: -webkit-center;
}
}
Best regards,
Rikard
Hi Rikard
Sorry, I was talking about vertical centring, not horizontal centring – also about resizing the logo so that it sits in the prescribed area with being cropped.
A
Hi,
Try inserting this css code in Rikard’s code:
.responsive #top .logo img {
top: 0;
}
the new code should look like this:
@media only screen and (max-width: 767px) {
.responsive #top .logo {
width: 100%;
text-align: -webkit-center;
}
.responsive #top .logo img {
top: 0;
}
}
Hope this helps :)
Best regards,
Nikko
Perfect!
Thanks Nikko! Awesome solution, as usual :)
Andy
Hi,
Glad we could help! Thanks for using Enfold :)
Best regards,
Nikko