Rank: Newbie Groups: Member
Joined: 6/5/2007 Posts: 3
|
Hi,
For some reason the text in the menu is appearing with a drop shadow. It is not in our stylesheets, and I am not sure where it is coming from. It is appearing in IE 7, but not in Firefox 2. It is version 3.1.11.2, .NET 2.0.
It is even there when I apply no stylesheets at all and use the dataset example instead of my own code. As a note, I am generating the menu on the fly in the code behind, so there is no markup text.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi Chris,
The shadow comes from the default value, not your styles. Since menu group contains menu items, when menu group has a drop shadow, menu item gets it as well. If you still want to have the shadow on the whole sub menu, set the menu group's background to a solid background color (no transparency). That should keep the shadow on the sub menu but remove the shadow from the menu item (text).
If you do not want shadow at all, set the look item's ShadowDepth to 0 (you may need to set it on both _TopLevelItem and _Default). The default shadow depth value is 3.
Thanks
|