Basic ToDo tasks?

I would love to have to option to have basic ToDo tasks. I just want simple toDos. I love logseq so far but I can’t handle text next to the checkboxes.

what are “basic ToDo tasks”?

Basically just a checkbox. Right now you have a checkbox plus “TODO” or “Doing” text next to it.

Maybe not perfect yet, but do you mean something like…

.marker-switch {
    font-size: 0px;
}

This CSS hack would remove the keyword TODO. Maybe you can refine the idea a bit more.

Someone in chat actually just gave me this CCS which does the trick:

.block-marker {
  display: none;
}

I do wish they built in an option to the settings though to toggle these on or off.

1 Like

cool :slight_smile:
thanks for sharing