Skip to main content

Synergy Global CSS Update

This document can be used to update the global CSS style of the Synergy application. You can make these changes by adding CSS codes to the 'Web.Css' KEYNAME in Synergy's CONFIGURATIONS table.

Making CSS Changes

  1. Access the Synergy CONFIGURATIONS table.
  2. Find the 'Web.Css' KEYNAME.
  3. Add the new CSS style to the VALUE of the 'Web.Css' KEYNAME.
  4. Save your changes.

This will affect the global CSS style on all pages of the Synergy application.

Sample CSS Code

You can use the following CSS code to hide the Google Play Store and App Store logos on the login page:

'''css div[class*="storeLinks"] { display: none !important; }


This code will hide all div elements that contain the class name "storeLinks" on the page.