how to disable a css property

SystemOAD

New Member
I am using a wordpress carousel plugin which sets a css property\[code\]body * { line-height:1.2em;}\[/code\]This is causing trouble in my layout. The line height in my css for body is\[code\]body{ line-height: 19px;}\[/code\]So I override \[code\]body *\[/code\] as \[code\]{line-height:19px}\[/code\] but it still breaks some of the layout. When I remove that property using firebug, everything works fine.Now the problem here is, I dont want to eddit the plugin css file, as every time I update it, I will have to do it.Is there a way I can nullify the effect of \[code\]body *\[/code\]This declaration is taking precedence over all other \[code\]line-height\[/code\] property.Here is the link . The css file loaded by a carousel plugin is breaking the navigation.
 
Back
Top