My be I am jsut missing it but I can't find the place to change the color of my nice menus I can get the borders to change but not the color of the middle part. I have changed ever color in the nice_menu.css and played a little in the style.css. I also used firebug but it did not tell me. Here is the site http://www.fansportsunion.com/
can some one point me in the right area?
Also how can I change the color of the font in the nice menu?

Comments

pbarnett’s picture

...your site's MySQL server seems to have fallen over.

Pete.

touchcrew’s picture

I got it fixed. Does any one know how to do this?

http://life1134.wordpress.com/
http://www.touchcrew.com/

pbarnett’s picture

Hi!

the code I used to change the background used these few overrides; you're using a vertical dropdown so I'm guessing that there are corresponding entries with 'down' or something rather that 'right' as a suffix...

/* next selectors are submenus PJB */
  li.menuparent li, li.menuparent ul {
    background: #e8f0f6;
    /*background-image: url(images/menuback.png);*/
    border: 1px solid #ccc;
  }
/* so the style above doesn't affect the main menu */

ul.nice-menu-right li.menuparent,
ul.nice-menu-right li li.menuparent{ 
  background: #e8f0f6 url(images/collapsed.gif) right center no-repeat; 
}

ul.nice-menu-right li.menuparent:hover,
ul.nice-menu-right li.over,
ul.nice-menu-right li li.menuparent:hover,
ul.nice-menu-right li li.over{
  background: #e8f0f6 url(images/collapsed.gif) right center no-repeat;
}

I'd imagine that you can change the color: attribute here as well.

Any help?

Pete.