tags:

views:

34

answers:

2

This is css

li { background: transparent url(bullet-arrow.png) no-repeat left 4px; 
     padding-left: 10px; 
     list-style-image: none; 
     list-style-position: outside; 
     list-style-type: none; }

this is current output

alt text

I need in this format

alt text

A: 

just an idea... could you please try to set display:block (or, maybe, display:inline-block) for your li?

oezi
tried , both not working
metal-gear-solid
make sure the UL and the LIs are display block. Then it should work
meo
both are `display:block` still not working
metal-gear-solid
the LI should have display:list-item, not block. http://www.w3schools.com/css/pr_class_display.asp
xor_eq
but i'm using background image in `li`
metal-gear-solid
@oezi - problem solved by giving 1display:block1 to `li a {}`
metal-gear-solid
A: 

This should work.

li
{
  list-style-image:url('bullet-arrow.gif');
  list-style-position: outside;
}

(I submitted to early and then had to edit. Sorry!)

Nick Pyett