Suntower
Posts: 225
|
| Posted: 04/24/2008, 2:58 PM |
|
Hi,
I know I should know how to do this, but can someone give me the CSS style property to control the distance between the bullet and the text in a UL?
I want to be able to control the amount of white space between the image bullet and the left margin of the item's text.
Or does one have to simply add extra space to the image?
Thanks,
---JC
_________________
---On a campaign for more examples and better docs! |
 |
 |
Suntower
Posts: 225
|
| Posted: 04/30/2008, 10:09 AM |
|
bump... c'mon! Give a brother a break!
_________________
---On a campaign for more examples and better docs! |
 |
 |
GeorgeS
Posts: 206
|
| Posted: 04/30/2008, 4:11 PM |
|
ul, li{
list-style-type:none;
margin:0;
padding:0;
}
li{
background:url(imageOfTheBullet.png) left top no-repeat;
padding:12px; /*the amount of white space between the image bullet and the left margin*/
}
_________________
GeorgeS |
 |
 |
Suntower
Posts: 225
|
| Posted: 04/30/2008, 8:38 PM |
|
Thanks, mate.
---JC
Quote GeorgeS:
ul, li{
list-style-type:none;
margin:0;
padding:0;
}
li{
background:url(imageOfTheBullet.png) left top no-repeat;
padding:12px; /*the amount of white space between the image bullet and the left margin*/
}
_________________
---On a campaign for more examples and better docs! |
 |
 |
|