How to have bullet points not be oriented in the middle of the card?

Hello there :slight_smile: Hope my question makes sense, English isn’t my first language.

Anyways, basically I like using bullet points in answers (black dot and white circle), but when studying, all of them start in the middle of the card and I wondered if there is a way to make them start on the left side of the card.

Yes, you have to add the text-align: left; property to the ul tag. Try something like

ul {
  text-align: left;
}

to the Styling section in your card templates.

1 Like

You could also update your Anki Desktop app to a version >= 2.1.52:

1 Like

omg thank you so much!! It worked on my Mac right away!

Is it also possible to to do that on the mobile app as well? cause it didn’t sync sadly

:face_with_raised_eyebrow:

it should… how are you syncing?

I did the normal kind of syncing you would do when updating your cards.
Should I rather do a full one?

how can I download that?

Here: Anki - powerful, intelligent flashcards

This will not automatically affect AnkiMobile. I’d assume Damien has already updated AnkiMobile to reflect the changes on the desktop app, but that’s not guaranteed.

@BlackBeans solution should work out of the box on all clients. Maybe adding !important between left and the ; helps.

So - I updated what I could. Bullet points look how I want them now on my Mac, which is great, but sadly not on my iPad still, even with the !important added.
it still looks like that - hope the picture is visible

Maybe the ul rule is overwritten by some other rule with more specificity.

Try targeting the list items themselves:

li {
    text-align: left;
}

thank you for your help

so, this is working on my Mac too, but again not on the iPad after syncing :frowning:

Your edit was a little incorrect - the text above should go at the very end, after the } and on a new line, eg

.card {
   ...
}
li {
  text-align: left;
}

If problems persist after that, please let us know.