Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS List with background image for bullet and dotted border (only below text) Re: List with background image for bullet and dotted border (only below text)

#115491
Paulie_D
Member

If you want to use a custom image as a bullet point then you’re going about it the wrong way (IMO).

Why not use

ul
{
list-style-image:url(‘image-name.png’);
}

Then you can use the dotted bottom border.

Won’t that work?