Combu  3.2.2
Unity API Documentation
Customize Web Administration

Table of Contents

Learn how to customize the web administration through CSS and JS

Javascript

You can add your own JS code by creating a file called custom.js in the folder /admin/js, if this file exists then it will be automatically added to the HTML output of the web administration.

CSS

You can override any CSS class by creating a file called custom.css in the folder /admin/css, if this file exists then it will be automatically added to the HTML output of the web administration.

For example to change the Combu logo displayed at top left of every page with your own, you can upload your own logo into the folder /admin/images and create the file /admin/css/custom.css with the following content:

#logo-title {background-image: url('../images/your_logo.png');}