GitHub user dosubot[bot] added a comment to the discussion: Hide created by from title panel of dashboard
<!-- Greeting --> Hi @georgeteena! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the superset team. <!-- Answer --> There's no built-in configuration setting to hide the metadata after the dashboard title, but you can achieve this with **custom CSS**. **Quick Solution:** Go to your dashboard → click the `...` menu → select **Theme & CSS** → add CSS like: ```css .title-panel > *:not(:first-child) { display: none; } ``` You may need to inspect the DOM in your browser to find the exact selectors for the specific elements you want to hide (star icon, Published badge, user icon, timestamp). Look for elements within the [`.title-panel`](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/packages/superset-ui-core/src/components/PageHeaderWithActions/index.tsx#L136) and [`.dashboard-header-container`](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/src/dashboard/components/Header/index.jsx#L764) classes, or use `data-test` attributes for more stable selectors. **Caveats:** - CSS selectors may change in future Superset versions - This only hides elements visually—it doesn't remove any underlying permissions **Alternative for embedded dashboards:** If you're embedding the dashboard, the [Embedded SDK with `dashboardUiConfig`](https://github.com/apache/superset/discussions/36447#discussioncomment-15186079) provides a cleaner approach with options like `hideTitle: true`. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=brand-link).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/c58e7fed-58bd-4f9d-aaca-d152e281b5da?feedback_type=great_response&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/c58e7fed-58bd-4f9d-aaca-d152e281b5da?feedback_type=irrelevant_answer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/c58e7fed-58bd-4f9d-aaca-d152e281b5da?feedback_type=incorrect_sources&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/c58e7fed-58bd-4f9d-aaca-d152e281b5da?feedback_type=too_verbose&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/c58e7fed-58bd-4f 9d-aaca-d152e281b5da?feedback_type=hallucination&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/c58e7fed-58bd-4f9d-aaca-d152e281b5da?feedback_type=bug_report&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-bug_report) | [Other](https://app.dosu.dev/response-feedback/c58e7fed-58bd-4f9d-aaca-d152e281b5da?feedback_type=other&utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=feedback-other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=chat-badge) [](https://cursor.com/link/prompt?text=There%27s%20no%20built-in%20configuration%20setting%20to%20hide%20the%20metadata%20after%20the%20dashboard%20title%2C%20but%20you%20can%20achieve%20this%20with%20%2A%2Acustom%20CSS%2A%2A.%0A%0A%2A%2AQuick%20Solution%3A%2A%2A%20Go%20to%20your%20dashboard%20%E2%86%92%20click%20the%20%60...%60%20menu%20%E2%86%92%20select%20%2A%2ATheme%20%26%20CSS%2A%2A%20%E2%86%92%20add%20CSS%20like%3A%0A%0A%60%60%60css%0A.title-panel%20%3E%20%2A%3Anot%28%3Afirst-child%29%20%7B%0A%20%20display%3A%20none%3B%0A%7D%0A%60%60%60%0A%0AYou%20may%20need%20to%20inspect%20the%20DOM%20in%20your%20browser%20to%20find%20the%20exact%20selectors%20for%20the%20specific%20elements%20you%20want%20to%20hide%20%28st ar%20icon%2C%20Published%20badge%2C%20user%20icon%2C%20timestamp%29.%20Look%20for%20elements%20within%20the%20%5B%60.title-panel%60%5D%28https%3A//github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/packages/superset-ui-core/src/components/PageHeaderWithActions/index.tsx%23L136%29%20and%20%5B%60.dashboard-header-container%60%5D%28https%3A//github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/src/dashboard/components/Header/index.jsx%23L764%29%20classes%2C%20or%20use%20%60data-test%60%20attributes%20for%20more%20stable%20selectors.%0A%0A%2A%2ACaveats%3A%2A%2A%0A-%20CSS%20selectors%20may%20change%20in%20future%20Superset%20versions%0A-%20This%20only%20hides%20elements%20visually%E2%80%94it%20doesn%27t%20remove%20any%20underlying%20permissions%0A%0A%2A%2AAlternative%20for%20embedded%20dashboards%3A%2A%2A%20If%20you%27re%20embedding%20the%20dashboard%2C%20the%20%5BEmbedded%20SDK%20with%20%60dashboardUiConfig%60 %5D%28https%3A//github.com/apache/superset/discussions/36447%23discussioncomment-15186079%29%20provides%20a%20cleaner%20approach%20with%20options%20like%20%60hideTitle%3A%20true%60.) [](https://go.dosu.dev/discord-bot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-assistant&utm_content=join-discord) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/38623) GitHub link: https://github.com/apache/superset/discussions/38623#discussioncomment-16111827 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
