function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ShravanKumarBagamShravanKumarBagam 

How can i display logo on standard account detail page?

 

Hi.......

 

How can i display logo on standard account detail page?

Scott_VSScott_VS

Are you looking to display the logo for the account you're looking at or are you looking to replace the Salesforce logo at the top of the page?

jasonrennekingjasonrenneking

You can use a combination of a URL and Formula field to implement Customer / Client Logos on any object.  I wrote a post about it Your Customer’s Logos on Salesforce.Com Accounts and Reports.

 

Here’s how you can do it:

  1. Go into your User Menu and Select Setup
  2. Go to Account –> Fields
  3. Select New Field
  4. Data Type = URL
  5. Field Label = Logo_URL
  6. Set up the Permissions to this field accordingly
  7. Create another New Field
  8. Data Type = Formula
  9. Field Label = Logo
  10. Formula = IMAGE( Logo_URL__c , “Company Logo”, 60, 80)
  11. Set up the Permissions to this field accordingly

Just add a URL to a logo and it will be available in Salesforce as an Image.

 

Hope this helps.