I am using Umbraco 7. I have created a custom section using
namespace MyUmbraco.Sections
{
[Application("CustomSection","mySection","myicon",8)]
public class CustomSection: IApplication
{
}
}
I am able to create nodes in my section, CRUD operations for those items. only thing in my example is, i am unable to add a custom icon for that section, if i use built in icons, it works fine. I have also added icon image to /umbraco/Images/Tray folder and css in umbracoGUI.css as
#tray .myicon{
background-image:url('../Images/Tray/myicon.png');
}
is there something I am missing?