tinymce

in tinymce wrapping everything in <p> tags can be very annoying and is often an unwanted behaviour. how can you force tinymce to use <br /> instead of <p> tags?
1 answer

tinymce init options

tinyMCE.init({
...
force_br_newlines : true,
forced_root_block : '' // Needed for 3.x
});

or use css to set margin and padding:

p {margin: 0; padding: 0;}

Taggings: