CSS: Difference between revisions

From Customer365 for SageCRM
(Created page with "The system has a primary style sheet called ewaress.css. This is located at the core level of the web site. To control the system font you change the option here. The defau...")
 
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The system has a primary style sheet called ewaress.css.
The system has a primary style sheet called ewaress.css.
We also have the option (in the web.config file) to add in a custom style sheet
EG
  <add key="customPortalCSS" value="css/crmtogether2015.css"/>


This is located at the core level of the web site.
This is located at the core level of the web site.
Line 7: Line 14:
The default font settings are as below:
The default font settings are as below:


/*font size controlled here*/
    /*font controlled here*/
body, table, td  
    body, table, td  
    {
        font-size: 13px;
        color :black;
        font-family: Arial, Sans-Serif;
    }


{


    font-size: 13px;
----


    color :black;
User can change Navigation bar colour for android and windows phones in web.config file


}
<add key="ThemeColour" value="#0CA375"/>

Latest revision as of 13:06, 19 October 2023

The system has a primary style sheet called ewaress.css.

We also have the option (in the web.config file) to add in a custom style sheet

EG

  <add key="customPortalCSS" value="css/crmtogether2015.css"/>


This is located at the core level of the web site.

To control the system font you change the option here.

The default font settings are as below:

   /*font controlled here*/
   body, table, td 
   {
       font-size: 13px;
       color :black;
       font-family: Arial, Sans-Serif;
   }



User can change Navigation bar colour for android and windows phones in web.config file

<add key="ThemeColour" value="#0CA375"/>