Forums

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

Home Forums CSS How to remove bullets in IE8?

  • This topic is empty.
Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #104093
    anusha_isaacraj
    Participant

    try this out…

    #top-ad ul li {

    display: inline;
    list-style: none;
    list-style-image: none;
    list-style-type: none;

    }

    #104277

    Hi dzulfriday. What a lot of people here have suggested should work. It is possible that you have written your css the right way, but have also declared a global list-style-type some where below #top-ad li list-style-type. I would make sure that this is not the case. If you find it is still happening even after looking through your css for any overriding styles, I would try to get your css and html up somewhere for us to review it.

    -Mike

    #131897
    Andrew85
    Participant

    I had a similar situation. Oddly, when I selected the li directly using

    li {
    list-style-type:none;
    }

    and reloaded the page, the bullets did not display.

    Then, I took that li selector out. The descendant selector

    nav ul li {
    list-style-type:none;
    }

    then worked.

    #131909
    chrisburton
    Participant

    Just so everyone is aware, this thread is over 2 years old.

Viewing 4 posts - 16 through 19 (of 19 total)
  • The forum ‘CSS’ is closed to new topics and replies.