cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco Branding and Logos

sashah
Champ in-the-making
Champ in-the-making
I have been able to change the page-title from 'Alfresco Share' to 'My Company Name' however I cannot seem to alter the page icon from the default icon

Where is this located and/or referenced from the the code

thanks
1 REPLY 1

patorjk
Champ in-the-making
Champ in-the-making
I'm not sure if this is the "best" way to do this, but you can modify Share's template files. The header templates are located in this directory:

C:/Alfresco/tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/header/

In that directory, open up the file "header.get.html.ftl" and add this line (but with your own image URL) under the "assign" statements at the top:

<link rel="shortcut icon" type="image/png" href="http://example.com/myicon.png">

That will change the icon that appears in the address bar and the favicon for the website. Be careful when editing Share's template files (backup the file before you change it). After you change it, go to "http://localhost:8080/share/page/index" and press "Refresh Web Scripts" to load the changes you've made.

Again, I'm not sure if this is the best way to do this (or if I've misunderstood the question), but it should work.