Question:
Where and how do I upload my favicon in Site / Enterprise?
Answer:
- For Site - Your favicon can be uploaded in Site Setup --> Site --> Design

- The icon should be small in size so it will display in the tabs of your browser whenever a user is on your Site page.
- Your favicon file must be an .ico file 16px x 16px
- The administrator can also disable your Favicon by selecting: "Disable Favicon"
- For Enterprise - Add the following code to the banner HTML or text/html widget :
-
<script>
(function() {
var link = document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = 'http://www.stackoverflow.com/favicon.ico';
document.getElementsByTagName('head')[0].appendChild(link);
}());
</script>
Comments