GCIT wrote
Next problem is that you cannot have a css rollover colour change over the image. Maybe there is a way to do a mouseover javascript routine but I didn't try.
Yes you can.
In your CSS file, create these entries:
/* Menu cell Normal */
.RootMenuItem TD
{
background-color: Transparent;
height : 25px;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
color : #666;
font-weight : bold;
text-decoration : none;
vertical-align: top;
}
/* Menu cell MouseOver */
.RootMenuItemSelect TD {
background-color: Transparent;
height : 25px;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
color : #D70E27;
font-weight : bold;
text-decoration : none;
vertical-align: top;
}
This will allow you to change background images/colors etc. Perhaps doesn't answer your question 100%, but proves you can do a CSS rollover for SolPartMenu.
Hope this helps.