Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How do I remove list bullets?

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #37827
    Timothy Smith
    Participant

    I am am having trouble removing list bullets on my on line resume. I have tried the following :

    .nobull {
    list-style: none;
    list-style-type: none;
    }
    -And clearing my browser cache. Here in a link to the resume.

    -Does your list (ul or ol), or the child li elements have the relevant class name

    -You have quite a lot CSS references in your code that spit out 404 HTML instead of CSS. You should fix them
    – ul {
    list-style-type:none !important;
    ul
    {
    list-style: none;
    margin: 0;
    }
    ul.has-bullets
    {
    list-style: none outside disc;
    margin-left: 18px;
    }

    #105423
    TheDoc
    Member

    Do you have a link?

    #105424
    Timothy Smith
    Participant
    #105431
    TheDoc
    Member

    Looks like it’s working fine to me.

    Also, there is a lot of code going on that doesn’t need to be there.

    #105432
    Timothy Smith
    Participant

    Please be specific

    #105436
    JosiahB
    Member

    In this section of css you have try including, list-style: none

    html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    list-style:none;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.