Edit online

How to Change the Application Name, Logo, and Favicon

It is possible to change the name of the application, the logo, and the favicon for your Oxygen Feedback interface. This can be achieved by changing the following properties in the config/feedback-application.properties file, setting their values according to your customization needs:
##################################################################
# Product branding configuration
##################################################################
feedback.product.name=Oxygen Feedback
feedback.product.logo.url=/images/appLogo.png
feedback.product.favicon.url=/images/favicon.ico

Custom images can be placed in the [Oxygen-Feedback-Home]/data/images directory. Their path is referenced in the properties file with /images/... (without "/data"). For example, if you place an image in /data/images/logo.png, you must reference it as /images/logo.png.

How to Use a Different Logo for Mobile Devices

If you want to use two different logos (one for desktop and one for mobile devices) for your Oxygen Feedback interface (for example, if the desktop version of the logo is too large for mobile devices):
  1. Reference the desktop version of the logo image in the config/feedback-application.properties file as described in the previous section.
  2. Save the mobile version of the logo image in the same directory where the desktop version of the logo image resides. It must have the same file name as the desktop version with _mobile added to the end of the name (for example, if the desktop version is named appLogo.png, the mobile version must be appLogo_mobile.png).

Result: The application will automatically use the mobile version of the logo file (e.g. appLogo_mobile.png) for mobile devices and the desktop version (e.g. appLogo.png) for desktop devices.