Problems with media queries

http://mayacove.com/dev/rd/css.gif

why is rule in line 49 being overwritten with code on line 18???

this is driving me nuts… :frowning:

thank you…

The experts can probably do a better job of explaining this, but the rule in line 49 is for #menu (targeting everything with an ID of menu) and the rule in line 18 is for a#menu (targeting only anchor tags with an ID of menu) which, I believe, is more specific and so takes precedence.

yes, that’s what it was… the specificity thing!!! :x
oh brother…

thank you…