weblinkindianet
New Member
I am using a Wordpress carousel plugin which sets a CSS rule\[code\]body * { line-height:1.2em;}\[/code\]This is causing trouble in my layout. The line height in my CSS for \[code\]body\[/code\] 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 rule using Firebug, everything works fine.Now the problem here is, I dont want to edit 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\] properties.Here is the link. The CSS file loaded by a carousel plugin is breaking the navigation.