Is there a way to set before and after paragraph spacing? Or, is there a way to apply line height to Projects and not to tasks, or tasks and not to notes? You can do all of the following with manual returns. However, setting line height normally gives a more professional space appearance between lines and, if it were possible to set different line spacing values to different sections then that would make life easier for sure.
----------- This -----------
THIS IS A PROJECT:
- And this is a task which supports the project
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
THIS IS ANOTHER PROJECT:
- And this is a task which supports the project
And this is a lot of discussion about ways to go about taking care of the task
----------- Is Better Than This -----------
THIS IS A PROJECT:
- And this is a task which supports the project
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
And this is a lot of discussion about ways to go about taking care of the task
THIS IS ANOTHER PROJECT:
- And this is a task which supports the project
And this is a lot of discussion about ways to go about taking care of the task
ADDED: Shucks, answered my own question (almost) - @jessegrosjean except I would still like to know if there is a paragraph setting for spacing. It would still be nice to set before and after spacing (as different). Best case scenario would be to set a project to line spacing before by value. Then whatever you put after it stays grouped with it visually. It does work to put line height in each section. This is looking good so far as;
`// Changes the Task Font.
item[data-type=task] {
font-size: 18;
color: rgb(0, 0, 0);
line-height-multiple: 1.5;
}
// Changes the Note Font.
item[data-type=note] {
font-size: 17;
color: rgb(42, 84, 165);
font-style: Bold;
line-height-multiple: 1.9;
}`