This is a migrated thread and some comments may be shown as answers.

appearance/styling

1 Answer 48 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Kjell
Top achievements
Rank 1
Iron
Kjell asked on 25 Feb 2012, 08:52 PM
I load my RadMenu from SqlDataSource.
I have set skin = "" and want to set the color of menu item using CssClass.
How do i set the menu background color to white, menu item to blue, submenu item to pink and onmouse over color......
And space 4px to the menu item.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 27 Feb 2012, 07:36 AM
Hello,

Try the following css.
CSS:
<style type="text/css">
 .RadMenu
  {
    background-color:White !important;
  }
 .RadMenu .rmHorizontal .rmText
  {
    background-color: blue !important;
    color: white !important;
    width: 4px !important;
  }
 .RadMenu .rmVertical .rmText, .RadMenu .rmHorizontal .rmVertical .rmText
  {
    background-color: Black !important;
  }
</style>

Thanks,
Princy.
Tags
Menu
Asked by
Kjell
Top achievements
Rank 1
Iron
Answers by
Princy
Top achievements
Rank 2
Share this question
or