[css-d] something overwriting my css?

2013-03-20 Thread Angela French
Hello, I've got a dropdown menu where the text for the menu items is supposed to be a dark gray but is coming up white on a white background. I can't find what is making the color declaration not work. I'd be grateful for any assistance. The site is here: http://168.156.9.250/WELA/ The issue

Re: [css-d] something overwriting my css?

2013-03-20 Thread Sarah Forst
You have a: .nav-collapse .dropdown-menu a { 1. color: White!important; } That is causing the link text to be white. I'd avoid using '!important' - it tends to cause issues like this. On Wed, Mar 20, 2013 at 3:51 PM, Angela French afre...@sbctc.edu wrote: Hello, I've got a dropdown

Re: [css-d] something overwriting my css?

2013-03-20 Thread Chris F.A. Johnson
On Wed, 20 Mar 2013, Angela French wrote: Hello, I've got a dropdown menu where the text for the menu items is supposed to be a dark gray but is coming up white on a white background. I can't find what is making the color declaration not work. I'd be grateful for any assistance. The site is

Re: [css-d] something overwriting my css?

2013-03-20 Thread Angela French
: [css-d] something overwriting my css? You have a: .nav-collapse .dropdown-menu a { 1. [ ]color: White!important; } That is causing the link text to be white. I'd avoid using '!important' - it tends to cause issues like this. On Wed, Mar 20, 2013 at 3:51 PM, Angela French afre