We have a problem with one of our sites, where we are building the menu from codebehind, using images:
myMenuItem.ImageUrl =
"~/Images/" & intTraderID & "/" & strImage
myMenuItem.HoveredImageUrl =
"~/Images/" & intTraderID & "/" & strRollover
myMenuItem.Text =
""
The menu has a custom skin applied before the items are added:
mnMenu.Skin = strMenuSkin
mnMenu.EnableEmbeddedSkins = bUseTelerik
Thi sall worked perfectly well until we upgraded to the latest release, but now the menu displays a margin around each image.
Using fiirebug, it looks to me like the css for the skin is being overridden by the default skin - is this correct? If so, is there a workaround? I have tried applying the page skin to each element as it is created, and also setting the skin after adding the items, but it makes no difference.
Is there something I have missed?