Jack Blankenships wrote:
> I have a page using an unordered list with a custom list style image. This
> works fine until I set the child li elements to use display: inline; at
> which point the list style image disappears.
display: inline; ...means you are no longer displaying as a "list item".
Try putting the image inside the list item...
list-style-position: inside;
http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position
http://reference.sitepoint.com/css/list-style-position
--
Ghodmode
http://www.ghodmode.com
On Thu, 2009-12-03 at 15:25 -0700, Jack Blankenships wrote: