I couldn't find info about SiteIconURL property on the skinning guide pdf, the search engine pdf or searching the DNN site.
I was able to deduce the format in the XML file and have it work as:
<Setting>
<Name>SiteIconURL</Name>
<Value>/portals/_default/skins/myskin/images/siteicon.gif</Value>
</Setting>
I believe it would be more elegant and easier to mantain if I could specify the path in a way "relative" to the skin folder, so it looks in the skin folder rather than specifying the whole absolute path like above. The absolute path would mandate modifying the XML file if the skin is renamed and perhaps other situations.
But...I'm not sure what the syntax should be for specifying the file path relative to the skin folder.
I try something like /images/siteicon.gif but it becomes something like /admin/skins/images/siteicon.gif after parsing the skin and the page is finally generated.
Where would this property syntax be documented? (If it is)
Or can someone tell me if and how it can be specified relative to the current skin folder?
Thanks for the help.