Format Left Navigation Item

Today I found one question in MS CRM Development Forum to format Left navigation item, we can easily do this with JS. Just use below code on form load. I have tested this in contact form to form “More Addresses”

var Item=document.getElementById(‘navAddresses’);

if(Item!=null){
Item.style.fontWeight = ‘bold’;
Item.style.color = ‘#ff0000’;}

and result will be  as below

Leave a Reply

Your email address will not be published. Required fields are marked *