How to erase the space before a bullet list?

What I’m trying to do

There is a line of space before every list i create, number or bullet…
How could i cancel this space?

Things I have tried

I have absolutely no experience in css file, so i looked online copied a css file into the obsidian vault but did not worked :frowning:

If you mean the space above a list in Reading mode, this CSS gets rid of it in general:

:has(+ .el-ol) > p,
:has(+ .el-ul) > p,
:has(+ .el-ol) > .callout,
:has(+ .el-ul) > .callout {
	margin-block-end: 0;
}

.el-ol > ol,
.el-ul > .has-list-bullet {
	margin-block-start: 0;
}

There could be circumstances where that doesn’t work; I only tested in the sandbox with paragraphs and callouts before it. Hope it helps. But if you meant something else, maybe show a screenshot and describe it more.

Default in sandbox:

With snippet: