Getting rid of bullet points from

    Assuming that didn’t work, you might want to combine the id-based selector with the li in order to apply the css to the li elements:

    #otis li {
        list-style-type: none;
    }
    

    Reference:

    Leave a Comment