Page Title/ Logo removal?
Hey, I might be missing something, but is there a way to remove the page title (that top-left text) and the logo that comes with it? I've figured out how to rename it, but I haven't found any options to hide or remove it.
I assume it might be something with CSS, but I'm not sure how to do that at the moment.
3 Replies
Thank you for submitting a support request.
Depending on the volume of requests, our team should get in contact with you shortly.
⚠️ Please include the following details in your post or we may reject your request without further comment: - Log (See https://homarr.dev/docs/community/faq#how-do-i-open-the-console--log) - Operating system (Unraid, TrueNAS, Ubuntu, ...) - Exact Homarr version (eg. 0.15.0, not latest) - Configuration (eg. docker-compose, screenshot or similar. Use ``your-text`` to format) - Other relevant information (eg. your devices, your browser, ...)
Frequently Asked Questions | Homarr documentation
Can I install Homarr on a Raspberry Pi?
Hello. To remove the logo, you must first choose an image format that Homarr does not use and add it as a logo. For example, webp format. You can remove it by adding the following code to your css (this will remove all webp format images under img. Since Homarr does not use webp format images, only the logo will be removed)
.m_4081bf90 img[src$=".webp"] {
display: none;
}
To remove the page title
h2.m_8a5d1357.mantine-Title-root.mantine-visible-from-sm {
display: none;
}
m_4081bf90 will be gone after the next release. So not that a good idea to use it