Rank: Newbie Groups: Member
Joined: 6/7/2012 Posts: 2
|
i need your help , i bulid a menu and its work good, but i face a small problem with mouse courser ,its not Chang to hand view when it over the links menu...
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
|
Rank: Newbie Groups: Member
Joined: 6/7/2012 Posts: 2
|
Thanks a Lot , in the fact i solved it by using this code in Page Load
Code: C#
Menu1.TopGroup.Style.InlineStyle["cursor"] = "hand";
//and to SubMenu :
Menu1.LookItems.TopLevelItem.SubMenu.Style.InlineStyle["cursor"] = "hand";
regards..
|