In certain scenarios, you may want to modify your site favicon, so as not to display the default SharePoint logo. This article focus on that same procedure for both Classic and Modern site collections.
Modern SharePoint
Info: BindTuning's modern themes, offer the necessary flexibility to change your site favicon using one of its many built-in functionalities. If you don't have a BindTuning theme, be sure to sign up and request a trial here.
If you want to change the favicon of your site to use your own logo instead of SharePoint's icon, please proceed as follows:
- Open your site collection;
- Upload your new favicon on a document library (i.e, Site Assets), and copy its corresponding path;
- On the ribbon, click on BindTuning Settings;
- Under General, paste the path to your image under Favicon Path.
After performing the steps above, your favicon will change to the corresponding icon.
Classic SharePoint
Info: SharePoint Designer is required in order to accomplish the steps described in this article. If you need to download it please follow this link.
If you want to change the favicon of your site to use your own logo instead of SharePoint icon, please proceed as follows:
- Open your site with SharePoint Designer
- Go to Site Assets
- Upload your new favicon.ico file
- Check in the file in the context menu and if asked publish the major version
- Depending of the theme version you are using edit your masterpage
- Sandbox solution: go to All files > _catalogs > masterpage > THEMENAME
- Farm solution: go to All files > _catalogs > masterpage
- Check out and edit the masterpage you're using
- Update the url to the new favicon
- In your master page locate the tag bellow:
<SharePoint:SPShortcutIcon runat="server" IconUrl="/_layouts/15/images/favicon.ico?rev=23" />
- Replace it with:
<SharePoint:SPShortcutIcon runat="server" IconUrl="/SiteAssets/favicon.ico" />
- In your master page locate the tag bellow:
- Save the master
- Check in the file in the context menu and if asked publish the major version
- Refresh your site and the new favicon will appear
Comments