Lists show no number or bullet
52buickman opened this issue · 4 comments
I'm using Firefox v99.0 64bit.
The text on the list item is indented, but shows no number for ordered lists nor bullet icon on the unordered list. You can see the effect on the example demo.
Tried it with Brave Browser Version 1.38.111 Chromium: 101.0.4951.54 (Official Build) (64-bit) as well. No list items were denoted with a Chromium based browser.
Same issue here. I'm going to look at the CSS and try and find a workaround.
Under assets > scss > components > reset.scss , this should make bullets visible. Change disc to whatever style you'd like. However, I just started fooling around with the theme, so please take care to inspect the site before launch.
ul,
ol {
margin: 0;
padding: 0;
list-style: disc !important;
}
@colinjnash That did it. Thanks. I'm fairly novice with CSS. You taught me something new.
Note for others - the file name is _reset.scss in the theme and not reset.scss. It probably doesn't make difference in naming if put into your own asset > scss > components directory to (properly) override that file provided by the theme.