Re: Favicons
Posted by
Pedro on
May 30, 2012; 6:46pm
URL: https://support.nabble.com/Favicons-tp7579941p7580031.html
Hi,
since your app is embedded, you have to put the favicon code in the head tag of the main site.
If you want to change the app's favicon, you have to edit the html macro. Just add this code, line 4:
<override_macro name="html" parameters="head,body">
<n.html_impl>
<head>
<link rel="shortcut icon" href="http://yourIcon.jpg" type="image/x-icon" />
<n.head/>
</head>
<body>
<n.top_bar/>
<n.body/>
<n.nabble_footer/>
</body>
</n.html_impl>
</override_macro>