In case you are facing the same problem..
Here is what i did to fix it..
Please make the change at your own risk:
To fix this:
Under your DNN installation open the file:
\controls\SolpartMenu\spmenu.js
Around line 1615 there is a function:
function spm_getImage(oAttr, me)
{
//'retrieves an image for a passed in XMLAttribute
var sImage = spm_getAttr(oAttr, 'image', '');
if (sImage.length)
{
return spm_getHTMLImage(sImage, spm_getAttr(oAttr, 'imagepath', me.iconImagesPath), null, spm_getAttr(oAttr, 'title', ''));
}
else
return spm_getMenuImage('spacer.gif', me, null, ' ');
}
Change the functions text to show:
function spm_getImage(oAttr, me)
{
//'retrieves an image for a passed in XMLAttribute
var sImage = spm_getAttr(oAttr, 'image', '');
if (sImage.length)
{
//return spm_getHTMLImage(sImage, spm_getAttr(oAttr, 'imagepath', me.iconImagesPath), null, spm_getAttr(oAttr, 'title', ''));
return spm_getHTMLImage(sImage, '/images/', null, spm_getAttr(oAttr, 'title', ''));
}
else
return spm_getMenuImage('spacer.gif', me, null, ' ');
}
This SHOULD make your images in the menu work again.