cancel
Showing results for 
Search instead for 
Did you mean: 

Wiki

hss
Champ in-the-making
Champ in-the-making
Is there a way of using my own css files for existing wiki dashlet? or could I just include them with the original wiki css files
2 REPLIES 2

gronfelt
Champ in-the-making
Champ in-the-making
You could add a line like this to tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/dashlets/wiki.get.head.ftl:

<@link rel="stylesheet" type="text/css" href="${page.url.context}/components/dashlets/wiki.css" />

Put it right after this part:

<#include "../component.head.inc">
<!– Wiki Dashlet –>

Then create your wiki.css file in tomcat/webapps/share/components/dashlets/.

Hopefully that will work.

hss
Champ in-the-making
Champ in-the-making
Thank you for all your help. I will try this.