Holiday Spirt
A very rich lawyer is approached by the United Way. The man from the United Way is concerned that the lawyer made over $1,000,000.00 last year but didn't donate even a cent to a charity.
"First of all", says the lawyer, "my mother is sick and dying in the hospital, and it's not covered by healthcare. Second, I had five kids through three divorced marriages. Third, my sister's husband suddenly died and she has no one to support her four children..."
"I'm terribly sorry", says the United Way man, "I feel bad about asking for money."
The Lawyer responds, "Yeah, well if I'm not giving them any money, why should I give you any?"
CSS: Change/Remove Bulleted List's Black Dot
I have been asked by a few people how to change the image on a
bulleted list so they are not stuck with the boring black dot.
By applying CSS rules, you are are able to change the dot to
any image you want. So if the black dot does not fit in, you
can change it to a star.
There is two ways to do it, one requires more work than the
other!
The first one I do not see used that much, most people perfer
the second method even though the first one is simpler to apply
it.
li {
list-style-image: redStar.gif;
}
The second method has a bit more to it.
ul{
list-style-type: none;
padding: 0;
margin: 0;
}
li{
background-image: url(redStar.gif);
background-repeat: no-repeat;
background-position: 0 50%;
padding-left: 12px;
}
If you just do not want to show the dot at all, you just need
to do this:
ul{
list-style-type: none;
}
Hopefully this will solve your black dot problems.
Eric Pascarello
Moderator of HTML/JavaScript at www.JavaRanch.com
Author of: JavaScript: Your Visual Blueprint for Dynamic Web Pages