Remove Bitnami Banner on Desktop and Mobile

In the bottom right corner of our website, we see the Manage for Bitnami.

How do we remove/hide this from both the desktop and mobile versions of our site.

Thanks so much,

Found the solution:

#bitnami-banner{
display: none;
}

In x-Theme, select X, Theme Options, and open CSS.

The above code must be added as the first lines of code in CSS. For some odd reason, if the code is placed at the bottom, it doesn’t work. But works great if added as the first line of code.

Hello Grant,

Thanks for updating the thread.

Glad that you found the solution. You can also use following code and it should will work wherever you place the code.

bitnami-banner{
display: none !important;
}

To lean more about !important css property, please take a look at following resource.

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.