Developer Hub
Advisor 3
Advisor 3
  • Introduction to Frontnow
  • Introduction
    • Getting started
    • Getting access to Frontnow
    • Glossary
  • Integration
    • Events
    • Methods
    • Styling
  • Policies
    • Data protection
Powered by GitBook
On this page
  • Corporate Design
  • Customization

Was this helpful?

  1. Integration

Styling

The look and feel of the Frontnow Advisor is flexible to design and for further customizations (especially regarding the launcher icon), you can use standard CSS techniques yourself.

Corporate Design

Frontnow offers a wide variety of settings to adapt the advisor's design tokens to your corporate identity.

Those standard settings can be set in the Studio. Just tell your Frontnow contact for more information.

Launcher button image

The company logo might not be ideal for the launcher button at the bottom right corner to start the Advisor. It should be a simple icon which pops up to the eyes of the user. It can be a part of the company logo, with a good contrast (bright icon on colourful background). The following specs are ideal:

  • Format: Square

  • Dimension: 150x150px

  • Type: PNG or JPG (no SVG)

  • Colors: High contrast

  • Style: Simple, icon-style

Customization

For further customization, tell your developer team, to adjust the CSS styling by changing common properties:

Flexible customizations using CSS

Just add a <style> tag to manipulate the look and feel of the .frontnow-button, like this one-liner:

<style> .frontnow-button { left: 10px } </style>

Further customizations as an example:

.frontnow-button {
    border-radius: 5px;        // to make it square, default: 50%
    height: 70px; width: 70px; // to make it bigger, default: 54px
    left: 20px; bottom: 20px;  // to move it to the left, default: 10px
    ...
}
PreviousMethods

Last updated 3 months ago

Was this helpful?