Align bullet and text

This has been annoying me for a while…

  1. The line spacing between the bullet list and paragraph is too wide…
  2. I can’t align the paragraph (-> r. ventricular pressure overload) to the bullet list above

Is there anyone that knows how to fix this! Any help is appreciated!

You can change this by adding

ul {
    margin-bottom: 0;
}

to your card template styles (0 can be changed to any other desired value, the default is 1em).

The style for that will depend on how the text section is represented in your field source code. Assuming it is wrapped in a <div>, the spacing can be adjusted by adding the following style:

ul + div {
    margin-left: 40px;
}