For some reason on mobile my logo is writing in a 140 pixel height.
Is there somewhere that I can adjust this?
Hey rgruber,
What exactly are you looking to adjust? If you need further help then please post a link to where we can see the actual element as well.
Best regards,
Rikard
Here is a link to the site:
On mobile the logo is way too high (140px) . I’d like to stay about the same as it is on desktop (68px).
Rob
Hi,
Thanks for that. You could try CSS like this to alter the height of the header on mobile:
@media only screen and (max-width: 767px) {
.responsive #header_main .container {
height: 80px !important;
}
}
But the image you are using for your logo contains a lot of white space, so you might want to consider cropping that a bit.
Best regards,
Rikard