Quote:
Originally Posted by Paul O'B
The bullets are hidden because of the overflow:hidden on the list element
Code:
#info_list li
{
overflow:hidden;/*force it to stay its' width*/
}
Bullets are placed outside the principal box so if you hide the overflow then the bullets are hidden also.
IE6 also loses it's bullets on floated list elements (there is no fix other than setting the bullet on an inner element instead (display:list-item) ).
|
Ok, thanks... I tried the display:list-item in some positions but didn't get the result I wish.
Should I add a symbol of a bullet to each li one by one as an img?