Hello,
The logo on my website becomes tiny when viewed on a mobile phone. It’s comically tiny. How do I fix it?
I decided to have a slim header size and now the logo is small on desktop as well. When the header shrinks (since I have shrinking header activated), it grows to the normal size. Mobile continues to have the problem. Help would be appreciated.
Hi,
You have padding applied to the logo:
.logo img {
padding: 38px;
}
It looks to be added in Quick CSS, please check there and remove it if you can find it. If you need further help, then please include admin WordPress login details in private.
Best regards,
Rikard
Thanks for replying, Rikard.
I removed the padding from Quick CSS and that seemed to have fix it on mobile to a certain extent.
On desktop the logo is now stuck the top of the window instead of being properly aligned to the header.
On mobile the logo is perfect but it’s overlapping the ‘Search’ icon. I tried turning off ‘Append search icon to main menu’, but that doesn’t truly turn it off for mobile, only desktop.
Ignore the comment about the mobile logo overlapping the Search icon. It took a while to update and now it’s fine on mobile. The desktop problem persists.
Hi PowerBusWay,
Can you try adding this CSS code in Enfold > General Styling > Quick CSS:
#top .logo {
display: table;
}
#top .logo a {
display: table-cell;
vertical-align: middle;
}
Best regards,
Nikko
Thanks Nikko! It’s perfect.