Free Graphics
Sponsors
More Graphics
Cool Sites
Help : Bullets
How can I use a bullet on my web page?
Simply use the IMG HTML tag to display the bullet anywhere on your page. You can also drag and drop the image using the WYSIWYG HTML editor of your choice.
How can I use a bullet image with my HTML lists?
This can be accomplished using CSS. Insert the following code in your stylesheet:
ol.mylist
{
margin-left: 0px;
padding-left: 0px;
list-style: none;
}
ol.mylist li
{
padding-left: 20px;
background: url('bulletimage.jpg') no-repeat left center;
}
The value of padding-left shifts each list item over by a certain number of pixels, so you may need to change this to match the width of your bullet image.
