this might seem simple at first. But i need to disable some css rules that are in the system plugin template.css and i do not want to start editing that because of upgrades etc..
the rule i want to disable for example is a font size decleration because it is sending all my fonts out of whack (i am migrating a cloudbase template to T3 v2.0 and i want to keep the code in css)
in the system plugin
body#bd { background: #ffffff; color: #000000; font-size: 12px;}
in my template.css
body#bd { background: #ffffff; color: #000000; }
even though i have not declared the font size in my template.css the values is still expressed because of the nature of css.
how can i overide/disable the font declaration in my template.css without editing the system template.css.
I know i can restate the font size but that is not what i am after.
I would like the solution to fit all css declarations not just the font-size one i have used as an example.
here are some solutions that i am hoping for:
..bodybd#{}
.body#bd{font-size: off;}
cheers
shoulders