Hi. I’m trying to change the formatting of nested lists in my cloze cards. I want them to look like they do in the browser, but centered:
however, they look like this:
Below is the template information for the cards
Front Template:
{{cloze:Text}}
{{cloze:Text 2}}
{{cloze:Text 3}}
{{#Hint}}<br>{{hint:Hint}}{{/Hint}}
{{#Image}}<br>{{Image}}{{/Image}}
{{#Audio}}<br>{{Audio}}{{/Audio}}
Back Template:
{{cloze:Text}}
{{cloze:Text 2}}
{{cloze:Text 3}}
{{#Back Extra}}<hr>{{Back Extra}}{{/Back Extra}}
{{#Image}}<br>{{Image}}{{/Image}}
Styling:
.card {
font-family: arial;
font-size: 20px;
text-align: center;
color: black;
background-color: white;
}
.cloze {
font-weight: bold;
color: blue;
}
.nightMode .cloze {
color: lightblue;
}
ul { display: inline-block; text-align: left; } #unordered list formating
ol { display: inline-block; text-align: left; } #ordered list formating