How do I turn off a selector?
Good day,
I have a global stylesheet. In that stylesheet I have:
- .index .left #search_accordion .flyout {position: absolute; top: -9px;}
I need to turn off the top:-9px, because IE7 renders my menu wrong with it there.
I have a stylesheet for IE that overrides global which I set to:
- .index .left #search_accordion .flyout {position: absolute; top: 0px;}
- or
- .index .left #search_accordion .flyout {position: absolute;}
.
When I make top:0px, I get the wrong positioning. When I leave don't include the selector "top" then the browser pulls the value from the global stylesheet (top:-9px). The solution is I need take "top" out completely.
Does anyone have any ideas on how to do this?