Where did my bullets go?

LINK-
http://www.securehostserver.info/ornlfcu/

I have an unordered list in the DIV #what-businesses-qualify and the square bullets are not visible. Can anyone tell me why?

Thanks in advance. - Todd

You made a general style reset with:

* {
    margin: 0;
    padding: 0;
}

This has to be corrected for the <ul>'s:

ul {
    list-style: square outside none;
    margin: 0 0 0 20px;
}

Thanks Francky! It works… but how do I close up the gap or space between the square and the text string inside the list item?

ul li {
    padding: 0 0 10px 0;
}

The last one is the left padding; you’ve set the list-style-image on “outside”, so browsers will make some extra space automatically.

Actually, you cannot reduce that space. You can add to it, but not subtract from it. If you wish less space, you will have to use background-images as list markers instead of the built-ins.

@ronpat: In the meantime my suggestion is applied, so no further reducing of the gap will be needed. :wink:

Ah, thanks, Francky. I didn’t realize that the change had been made.

Off Topic:

Would you consider enabling PMs in your profile?