XLCubed is now FluenceXL. The new wiki can be found here: https://help.fluencexl.com/ |
Difference between revisions of "XLCubed Web Portal"
Line 26: | Line 26: | ||
Change the primary color used across the portal with the "PrimaryColor" setting in web.config. The value should be a valid hex color. | Change the primary color used across the portal with the "PrimaryColor" setting in web.config. The value should be a valid hex color. | ||
− | |||
<pre> | <pre> | ||
<add key="PrimaryColor" value="#1a82c5" /> | <add key="PrimaryColor" value="#1a82c5" /> | ||
Line 32: | Line 31: | ||
Change the logo with the "CustomerLogo" setting. The value should be the url to the image. | Change the logo with the "CustomerLogo" setting. The value should be the url to the image. | ||
+ | |||
+ | <pre> | ||
+ | <add key="CustomerLogo" value="https://otherserver.example.org/companylogo.png" /> | ||
+ | </pre> |
Revision as of 10:31, 16 March 2023
Enabling the new portal
Available from v10.0.144.
To enable this feature, make the following updates to the web.config file:
Under <appSettings>
<add key="UseNewPortal" value="true" />
Update the <httpRuntime> tag
<httpRuntime ... targetFramework="4.5" />
You will also need to be using a SQL Repository.
Now when you browse to your XLCubed Web site, you will see the new portal.
Customisation
Change the primary color used across the portal with the "PrimaryColor" setting in web.config. The value should be a valid hex color.
<add key="PrimaryColor" value="#1a82c5" />
Change the logo with the "CustomerLogo" setting. The value should be the url to the image.
<add key="CustomerLogo" value="https://otherserver.example.org/companylogo.png" />