Hide logo in Mobile
- The topic ‘Hide logo in Mobile’ is closed to new replies.
Need help? Check out our Support site, then
Hi. I would to hide the logo of the site in the mobile version only. In can’t find a way to do this. Is it possible with some css?
The blog I need help with is https://sinigocalcio.com/
The blog I need help with is: (visible only to logged in users)
Hi there. That’s absolutely possible. You can do it with the following custom css:
@media only screen and (max-width: 782px) {
.masthead .branding .site-title {
display: none;
}
}
I used the breakpoint 782px which is when the logo moves to the menu. You can tweak the value to fit whatever behaviour you want.
Thanks – Ben
Hi. But now I have to find a system to insert the site title in the mobile version
I’m confused. You asked how to hide the logo on mobile which is what I told you how to do.
If you can explain exactly what you want to do then I will try to help get the result you are looking for.
Thanks – Ben
In the desktop version, the logo appears well, not as much in the mobile version. So I asked you not to show it in the mobile version. But now the site in the mobile version no longer has a title or at least I don’t see it.
Hi – sorry for the delay. It looks like you have solved this now? Do you need any more help?
Hi there. Thank you very much, i have solved with some css. G.