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 15 posts - 1 through 15 (of 19 total)
  • Author
    Posts
  • #30821
    dzulfriday
    Member

    I have this in my wordpress header layout:

    		





    In my css file, i put these to handle the list:

    #top-ad {
    margin: 0 auto;
    }


    #top-ad li {
    display: inline;
    list-style: none;
    list-style-image: none;
    list-style-type: none;
    }

    FYI, the second list (top-ad-2), i show the Google Adsense 200×90 link ad.
    its ok in FF, Chrome, Safari but in IE, it still show bullets!

    i try to put all the list style in ul selector but the bullets are still there. anyone know how to deal this with IE?

    #72189
    Damion
    Member

    Try:


    #top-ad ul {
    list-style: none;
    }
    #72190
    dzulfriday
    Member

    not working

    #72157
    TT_Mark
    Member

    Do you have a live example of the page or the entire site code?

    #72159
    dzulfriday
    Member

    currently i am working on localhost…the bullets is small but i dont know why CSS cannot make them remove

    #72124
    TT_Mark
    Member

    Might be overwritten by another style?

    Try:


    #top-ad ul {
    list-style: none !important;
    }
    #72127
    TheDoc
    Member

    You can also try to be more specific like:

    #wrapper #sidebar #content #top-ad ul { list-style: none; }

    (or whatever the path is to that div)

    #72128
    dzulfriday
    Member

    do you mean i have to start from the earliest selector like header???

    TT Mark, the !important trick is not working as well. damn i hate ie

    #72129
    TheDoc
    Member

    I’m not saying you have to, I’m saying it might help.

    Like Mark said above, without a link to the site, it’s very hard for us to guess at what will help.

    #72088
    jamygolden
    Member

    Try using a css reset. That should automatically ‘disable’ most browser specific styles.

    #72023
    dzulfriday
    Member

    i am trying..never know about css reset before..

    #72013
    soap
    Participant

    Double check your code. Most likely an error or a style overriding it.

    #71887
    siddesigner
    Member

    #top-ad ul {
    list-style-type: none !important;
    }

    #71889
    dzulfriday
    Member

    sidedesigner,

    like i said, the important tag is also not working

    #71845
    jamygolden
    Member

    Can’t you paste the entire page CSS and HTML?

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