Quote:
Originally Posted by tartanpion
is there a way to overcome the line-height fixed to 1.3 in a paragraph with this custom css ?
|
Have you tried adding a line such as the one below?
Code:
body {line-height: 1.1 !important;}
You can also try using the universal selector by adding:
Code:
* {line height: 1.1 !important;}
though I am not fond of using that selector.
Regards,
David