Archived topic
Logo on mobile
3 replies · Started by Andrei on May 17, 2018
Viewing posts 1–4 of 4
It's possible to make the logo from header a little bigger on mobile?
Thanks
Hi Andrei,
you can use this to change the size of the logo:
@media (max-width: 320px) {
.main-navigation .navigation-logo img {
height: 60px;
}
}
Awesome, again a perfect solution.
I noticed that on my iPhone 7 the logo is exactly on top, but on my brownser is at the middle of the bar...
this is happening on your end?
How i can debug this?
Thanks
Hi Andrei, a better alternative maybe to remove the padding from the logo and leave the size alone:
@media (max-width: 320px) {
.main-navigation .navigation-logo img {
padding: 0 !important;
}
}
This archived topic is closed to new replies.