Install the app
How to install the app on iOS

Follow along with the video below to see how to install our site as a web app on your home screen.

Note: This feature may not be available in some browsers.

less

  1. BassMan

    [cXF] Navigation tab icons for custom tabs

    Have you created your own navigation tab and want to add icon? Use inspect element in your browser and hover over your tab. For details check image below: For that tab just add this code to your existing one (for example before the last } in above code): Do you want to have a different...
  2. BassMan

    [cXF] Hide user extra info and show it on hover

    Add code to extra.less template: /* Hide user extra info */ .message-userExtras { opacity: 0; max-height: 0px; overflow: hidden; transition: all 0.5s ease-in-out; } .message-cell.message-cell--user:hover .message-userExtras { opacity: 1; max-height: 300px; } /**********/
Back
Top