After WP update to 5.0.3, and disabling Gutenberg by installing a plugin ‘classic editor’, there is a problem with numbered and bulleted lists:
* in bulleted listst the bullets do not show
* in ordered listst, after ‘9.’ the counting starts again at ‘0.’ where it should be 10 (1,2,3,4,5,6,7,8,9,0,1,2,3,4,..)
* the problem only occurs in posts, not in pages
* in the editor everything is normal, the problem only shows in the frontend
Thanks
Problem solved:
the bullets an numbers were actually there, but disappeared (partially) in the margin. I set the left margin of ul to 15px instead of 7px, and the left margin of ol to 25px instead of 15px and the lists look fine now.
ul { list-style: none outside; margin-left: 15px;}
ol { list-style: decimal; margin-left: 25px; }
Hi marboo,
Glad you got it working for you! :)
If you need further assistance please let us know.
Best regards,
Victoria