html - list-style-image is not working -
html - list-style-image is not working -
i trying create custom bullet points , not working.
this html.
<div id="services"> <ul id="servicetext"> <h2 id="serviceheader"><strong>services offer:</strong></h2> <li>intros</li> <li>transitions</li> <li>lower 3rd titles</li> <li>web page design</li> <li>and more...</li> </ul> </div>
this css
ul#servicetext { list-style-image: url(images/checkmark.gif); font-size: 14px; float: right; padding-top: 5px; color: white; }
my site located here xdtrammell.com/lol if helps see code.
change selector ul#servicetext li
. maintain in mind can't include h2
element in ul
. not valid html.
html css
Comments
Post a Comment