Bullets Not Displaying In IE7..

Discussion in 'CSS' started by BrettOwnz, Mar 6, 2010.

  1. #1
    Has anyone heard of an issue where bullets do not appear in IE7, but they show just fine in FF, and chrome? This issue is really pissing me off.. I have tried everything - adding a margin, and anything else I could find on the web.. Here's my conditional style sheet for IE7, I hope some of you guys can help!

    ie7.css (where the css code in question occurs):

    
    #top5, #latest {
    	font-size: 11px;
    }
    
    #top5 a, #latest a {
    	font-weight: bold;
    	text-decoration: none;
    }
    
    #top5 ul, #latest ul {
    	list-style-type: disc;
    	padding: 0px;
    	margin-left: 10px;
    }
    
    #top5 li, #latest li {
    	margin: 0px;
    	width: 100%;
    }
    
    Code (markup):
    Thanks for the help guys..
     
    BrettOwnz, Mar 6, 2010 IP
  2. typingmums

    typingmums Well-Known Member

    Messages:
    1,446
    Likes Received:
    61
    Best Answers:
    0
    Trophy Points:
    140
    #2
    Put:

    list-style-type: disc;

    in li not ul
     
    typingmums, Mar 6, 2010 IP
  3. BrettOwnz

    BrettOwnz Member

    Messages:
    286
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    28
    #3
    No that wasn't the problem. I wound up fixing it after hours of debugging.

    The li was inheriting a property from another class..

    Thanks for the help though!
     
    BrettOwnz, Mar 6, 2010 IP
  4. typingmums

    typingmums Well-Known Member

    Messages:
    1,446
    Likes Received:
    61
    Best Answers:
    0
    Trophy Points:
    140
    #4
    No problem - glad you fixed it :)
     
    typingmums, Mar 6, 2010 IP
  5. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #5
    1) IF you had posted the whole code, we probably would have figured that the moment we opened it in firebug.

    2) IF you are having to send IE7 a conditional stylesheet, much less resort to conditional comments in the first place your HTML is probably bloated trash and your CSS methodologies all wrong.

    3) 11px is below accessibility norms and if this is in your CONTENT and not a menu, then it's likely your font sizes are a miserable /FAIL/ across the entire page. It's called %/em - use it!

    Just saying.
     
    deathshadow, Mar 8, 2010 IP
  6. BrettOwnz

    BrettOwnz Member

    Messages:
    286
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    28
    #6
    Thank you for posting your pointless rant, let me answer your "concerns", how about it.

    1) Well, i'd rather learn a few things and gain experience then... either way maybe I'll include the whole code next time.

    2) Go screw yourself. Just to let you know, this is NOT MY HTML work so you can go and STFU. And no, my CSS methodologies are not all wrong - the template was made by someone else, don't go around trying to make insults like some kid on youtube thank you.

    3) No, my font sizes are not messed up, and no everything is perfectly accessible.

    Oh boy do I love haters...
    Thanks again!
     
    BrettOwnz, Mar 9, 2010 IP