content editor Line height

Permalink
If I set the line-height so text that has word wrapped look good, I get way to much space between paragraph breaks. If I set the line-height for a p it changes al the text. is there a way to adjust each separately or tell the text editor to not wrap everything in p tags. I alwyas have problems like this with these inline editors.

thanks

pvernaglia
 
Tony replied on at Permalink Best Answer Reply
Tony
do something like this (within your theme's typography.css):

body { font-size:12px; line-height:16px; }

p{ padding:0px; margin: 0px 0px 12px 0px; }
pvernaglia replied on at Permalink Reply
pvernaglia
Ahh, that helped, thanks!