I\'m hoping to use an ASP.NET Menu Control for navigation through my site. However, I\'ve got a requirement that each MenuItem must be styled differently (different colors,
Try like this to set style for each menu item:
Code behind:
mnuMail.Items[1].Text = "Inbox";
CSS class:
.bold { font-weight: bold; }