Logo not showing in sidebar #8391
-
Hello! I currently have a custom header in place, so that could very easily be the issue here. The docs mention that the logo in the header and sidebar link to the homepage, which implies to me that if I enable a logo, it should be showing in the sidebar. It does not, there is only the site title. That said, I may be misunderstanding the situation here. I verified that it is seeing the logo by renaming it in the config to something nonexistent, and the build complains that it can't find the nonexistent one, but doesn't complain about the actual one. So, there is that. Please let me know if I'm missing something here, or if there is something else I need to do to make this feature work. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I stumbled onto the following, which does show the logo, but I'm not sure if this is the proper solution. It was set to
|
Beta Was this translation helpful? Give feedback.
Thanks. As mentioned above, with the default design from the Material theme, the logo should display in the sidebar only in mobile phone viewport. The CSS focuses on PC desktop layout first, so it hides the logo, as in the desktop layout it's shown in the header, and there is no need to display the logo twice on the page.
If you're using the mobile viewport and still don't see the logo then perhaps you're zoomed in on the page? Zooming on PC does change the scale of the objects, so it might have issues with correctly applying the CSS media query constraints for the viewport widths.
It works as designed, but let's assume you want the logo in both the Sidebar and Header even on Desktop la…