How to increase the spacing between item lists in a revealjs presentation using Quarto?

Hello, folks

I am creating a revealjs presentation using Quarto. I have a list of items, like the in the code below, and I want to increase the distance from item to item.

## Slide Title

* Item 1
   + Subitem 1
* Item 2
* Item 3

I want to increase the space between items 1 and 2, and items 2 and 3. However, the spacing between item 1 and subitem 1 doesn't need to change.

All help will be appreciated.
Thank you.

You should try to use CSS for this.

  1. Open your HTML document in browser inspector
  2. Look for the item you want to target
  3. Try a CSS rules in browser and see if that does what you want
  4. Write the rule to a file and pass it to revealjs following Quarto doc.

That should be the step to follow to solve this

2 Likes

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.