Hey wonderful support,
I got some help last week exchanging the logo image to text. I have a display none set to .logo img, but on mobile platforms the logo reappears.
1. How do I get rid of it permanently, on all platforms?
2. How do I change the line-height on my text span.subtext that replaces the image logo? I can target the class and change font, but I’m not able to change the line height.
Also, I’ve searched the forum for a way of keeping the menu intact on mobile platforms, i.e. not changing into the hamburger icon. I’ve seen it been done before and I’m guessing there is a topic about that. Could you referr me to one, so I can do some research about it? Not sure I wanna do it yet, just want to read about it.
Big thanks!
/ Cecilia
Hi ceciliahermansson!
1. Add this to your custom CSS.
.logo img {
display: none !important;
}
2. You already have it set to 10 it looks like.
span.subtext {
line-height: 10px !important;
display: block !important;
}
Best regards,
Elliott