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
mahesh1.396434879374128E12mahesh1.396434879374128E12 

Replace the Standard favicon with the Custom(Saved in Static Resource)

I want ro replace the standard salesforce favicon with image which saved in the Static Resource.

Thanks in Advance.
Ramu_SFDCRamu_SFDC
The following post might help

http://salesforce.stackexchange.com/questions/17184/how-do-you-customize-the-address-bar-icon-in-a-visualforce-page
mahesh1.396434879374128E12mahesh1.396434879374128E12
H Ramu, 

I got the output It is working only in the Mozilla. Not working in other browsers(like chrome and IE).

Help me.
SFDC TechieSFDC Techie
Hi Mahesh,

I do have same issues that Favicon is displaying in Firefox but not working in another browsers like Chrome and Safari.
If you have solutions please provide as you were also had same issus.

Thanks in Advance.
Siva Kishore 13Siva Kishore 13
Hi All,

I also faced the same issue like favicon is getting displayed in Mozilla but not working in Chrome and IE.

when i made the following tags false it worked for me in Chrome too.
               applyBodyTag="false"
               applyHtmlTag= "false"

Sample code: 
                <apex:page showHeader="false" standardStylesheets="false" applyBodyTag="false" applyHtmlTag= "false">
    
                                <link REL="icon" HREF="{!URLFOR($Resource.StaticResourceName)}" type="img/x-icon"/>

                </apex:page>
 
Mahatma ReddyMahatma Reddy
Hi Siva,

Above code worked for me. Thanks