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
Priyanka BardhanPriyanka Bardhan 

account logo

Whether it is possible to add standard account logo image of salesforce in visualforce page and also customizing the text in that logo ?
sfdcfoxsfdcfox
<pre>
<apex:pageBlock tabStyle="Account" title="Some Title"> ...
</pre>

This will generate the "folder" logo, use the color style, and provide whatever text you would like.

<pre>
<apex:page standardController="Account" ...>
    <apex:sectionHeader title="Some Title" subtitle="Some Subtitle"/>
    ....
</pre>

This will generate the standard header with the chosen title and subtitle (seen on a detail page, for example).