⊗mkPmDcNUM 118 of 250 menu

Missing ul list markers in CSS

To remove markers, you need to set the value none in the list-style-type property:

<ul> <li>list item</li> <li>list item</li> <li>list item</li> <li>list item</li> <li>list item</li> </ul> ul { list-style-type: none; }

:

Make a list without bullets, like this example:

enru