Presentation mode buggy nested list rendering and unusable default CSS

Steps to reproduce

No custom CSS,
Set up a file in presentation mode and hit start presentation
Presentation mode renders bulleted lists weirdly. The format of my note is like this

# A normal title perhaps

---


## A normal length subheading
- test
	- test
	- test
- teest

---

## test

Expected result

I would expect something similar to the way they are rendered preview mode

Actual result

image


Also see additional info

Environment

Mac OS 10.15
Obsidian 0.9.7

Additional info

Also: the default CSS doesn’t seem to be functional out of the box, as almost everything is set to 2.5 em. This is obviously fixable with custom CSS but I imagine its important to note

This is the full screen:


1 Like

thanks

1 Like

Same thing is happening to me.

will be fixed in 0.9.10

1 Like

Thanks, but I don’t think it is fixed though. :face_with_hand_over_mouth:

Or, perhaps, I don’t know how to use it. (I’m not using any custom content)

it doesn’t look like you have the ame problem.
Are you using a custom css?
How does this look like in the editor.

1 Like

Screenshots of Editor, Preview, and Presentation, respectively.
I’m not using custom CSS.
I’m not sure if its the same problem as OP but you’ll notice on the last screenshot that the slide pane doesn’t show the whole thing. It cuts out on “they require something to be done as best”.

@henriquemarcos
Yes this is the same problem I’m describing.
The current easy fix is with CSS. This one item should fix the issue for now, copy and paste it to the end of your css

.reveal {
  font-size: 1em;
} 

@WhiteNoise Is it ok if we reopen this bug or should I make it a new thread? Or is this an intended feature for the default css to be set at 2.5em in presentation mode?

I believe it’s intended, at least at the version we included Reveal. I don’t remember intentionally blowing up the font size on top of their implementation.

1 Like

@henriquemarcos You first bullets points are not valid bullet points as defined by the markdown syntax. Maybe you copy pasted the text. You need to change the • to -.

@ishgunacar it’s not the same bug because this bug report was about folding in slides and it was fixed.

1 Like

@Silver Ah gotcha. Now that I look at it more, I suppose its assuming that you follow good presentation “etiquette” like limiting to few bullets/6-7 lines per slide–which is understandable, and CSS let’s you change it if you need to anyway. Was a bit jarring when I first saw it and couldn’t imagine how it would make sense but it does.

@WhiteNoise Understood, since its intended I wont make another post

Thanks guys!

Where/how can I modify the CSS for Slides plugin?