- Professional Website Templates
A huge selection of professional website templates.
- Cheap Domain Names
Domains from the world's #1 domain registrar.
- Cheap Web Hosting
Premium quality web hosting at budget prices.
- Free CSS Templates
Download hundreds of free CSS website templates.
- Free Web Templates
The biggest collection of free templates.
- CSS Templates For Free
Simple, easy to use CSS templates.
- Build a Free Website
Build an amazing website for free.
Help and Information : 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.
