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
Line 7: Line 7:
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-size: 13px;
        font-family: Arial, Sans-Serif;
 
    }
    color :black;
 
}

Revision as of 20:42, 20 January 2012

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 default font settings are as below:

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