Hi everyone,
Could someone please let me know if it’s possible to remove the banner in Cockpit?
Hi everyone,
Could someone please let me know if it’s possible to remove the banner in Cockpit?
You have to override css like this.
Configuration | docs.camunda.org
This has to be done for all webapps (cockpit/tasklist/welcome/Admin)
Thank you for your response. However, I’m using Camunda as a dependency in my Spring Boot application (org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-webapp
), so I’m unable to override the source. Is there an alternative method to achieve this?
This is possible in springboot project as well.
Create following css
.ce-eol-banner {
display:none !important
}
In below files.
src/main/resources/META-INF/resources/webjars/camunda/app/admin/styles/user-styles.css
src/main/resources/META-INF/resources/webjars/camunda/app/cockpit/styles/user-styles.css
src/main/resources/META-INF/resources/webjars/camunda/app/tasklist/styles/user-styles.css
src/main/resources/META-INF/resources/webjars/camunda/app/welcome/styles/user-styles.css
You should restart camunda and also delete browser cache . Let me know if it solves your issue.
Thank you so much for the detailed solution! Your guidance has been super helpful. and its solves my issue.Thanks again for your support!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.