How to add bullet point lines

This isnt’t working in latest update.

1 Like

There’s a video tutorial if you put it in the google search bar. Hope it’ll be helpful

Or you can use outliner plugin in community plugin store. There’s a setting to show bullet lines.

1 Like

outliner plugin didn’t work for me

can u give me the video link. I’m having harder time finding that

I just found this video which seems to discuss it. I didn’t watch it all the way through, but it might help our :slight_smile:

I have done that but it doesn’t work now.

there’s a lot of comments that saying this trick doesn’t work anymore

1 Like

I don’t know if this help, but there’s a collection of css snippets in github that actively maintained. You might find a fix in there.

I am unfortunate. It didn’t work for me

This work normal on me ._. (My Obsidian is 0.12.15, installer 0.12.15)

image

/* Reduce indentation in bullet lists */
ol {
    padding-inline-start: 18px;
}
ul {
    padding-inline-start: 18px;
    list-style-type: disc;
}

/* Long bullet list: connect the same levels of bullets with vertical "lines" */
.cm-hmd-list-indent .cm-tab, ul ul { position: relative; }
.cm-hmd-list-indent .cm-tab::before, ul ul::before {
 content:'';
 border-left: 1px solid rgba(0, 122, 255, 0.25);
 position: absolute;
}

.cm-hmd-list-indent .cm-tab::before { left: 0; top: -5px; bottom: -4px; 
}

ul ul::before { left: -11px; top: 0; bottom: 0; /* change "left:" value for align of vert. line */
}

/* Edit mode unordered list dash rendered as dot for WYSIWYG */
/* I prefer "Turn -lists into bullets as you type as per Typora */
/* Unordered lists: turn into bullets as you type, as per Typora */
```css
span.cm-formatting-list-ul {
  visibility: hidden !important;
}
  
span.cm-formatting-list-ul:after {
  content: '• '; /* ITS theme; for Blue Topaz  */
  margin-left: -12px;
  color: var(--accent); /* ITS theme; for Blue Topaz --text-normal */
  visibility: visible !important;
}

did u paste it as a snippet?

can u share .obsidian folder with me?

I dont know what I’m doing wrong

Yes, I pasted it as a snippet. Here you go: .obsidian.zip (2.5 KB)

Great, thanks for doing this!

1 Like

Omg. It works . I dont know how to thank u. God bless u !!!

1 Like

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