web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / MS CRM Customization / CRM 2013 Form change Footer...

CRM 2013 Form change Footer Color for all forms

Mahadeo Matre Profile Picture Mahadeo Matre 17,021
Footer before changing color

Footer After Changing Color



This is unsupported way of MS CRM 2013 customization.

Steps:
1.       Goto C:\Program Files\Microsoft Dynamics CRM\CRMWeb\_forms\styles
2.       Make a copy of read.css.aspx file
3.       Open read.css.aspx
4.       Find TABLE.ms-crm-Form-StandaloneSection section in CSS file.
5.       Add
background-color:#D1CBC5;
in TABLE.ms-crm-Form-StandaloneSection

Exiting
TABLE.ms-crm-Form-StandaloneSection
{
table-layout: fixed;
width: 100%;
line-height: 16px;
}

Replace with

TABLE.ms-crm-Form-StandaloneSection
{
table-layout: fixed;
width: 100%;
line-height: 16px;
background-color:#D1CBC5;
}

6.       Save file.
7.       Clear browser cache

8.       Try now.

This was originally posted here.

Comments

*This post is locked for comments