================================= White-Labeling Izenda ================================= | Introduction ------------------------------------------ This guides demonstrates how to "white-label" various parts of Izenda. | CSS Overrides ---------------------------------------------------- Most white-labeling can be accomplished via CSS overrides in a custom css file. Creating the custom CSS file ############################## #. Create a new CSS file "customizations.css". #. Deploy the file to the web front-end. #. Edit the index.html file to include the new CSS file as shown below at line 21. .. code-block:: html :linenos: Izenda BI Platform
#. Save the changes and optionally restart the front-end site. Common Examples ---------------------------------------------------- Removing the Izenda Copyright notice ####################################### #. Update the customizations.css file to include the CSS below: .. code-block:: css :linenos: .izenda-Footer .izenda-Footer-copyright { visibility: hidden; } **Before:** .. figure:: /_static/images/copyright_before_white-labeling.png **After:** .. figure:: /_static/images/copyright_after_white-labeling.png Removing the Izenda help icon ################################ #. Update the customizations.css file to include the CSS below: .. code-block:: css :linenos: .icon-help-circled:before { visibility: hidden; }