how to remove padding from a li css code example
Example 1: css remove list indent
ul { /** works with ol too **/
list-style: none; /** removes bullet points/numbering **/
padding-left: 0px; /** removes actual indentation **/
}
Example 2: ol remove bullet space
padding-left:0