Feb 27, 2005 #1 mdr227 Programmer Nov 17, 2000 114 US How would I replace the standard bullet (round or square) with a graphic instead?
Feb 27, 2005 #2 CliveC Programmer Nov 21, 2001 1,222 US <ul style="list-style:url(tubedot.gif)"> <li >one</> <li>two</> <li>three</> </ul> Clive http://tubularity.comhttp://PalliativeCareConsulting.org Upvote 0 Downvote
<ul style="list-style:url(tubedot.gif)"> <li >one</> <li>two</> <li>three</> </ul> Clive http://tubularity.comhttp://PalliativeCareConsulting.org
Feb 27, 2005 #3 kpetursson Programmer Jan 28, 2002 313 US to make it more flexable you can place the style bit into you CSS file. HTML <ul class="pict1"> <li>one</li> <li>two</li> <li>three</li> <ul> CSS ul.pict1{ list-style-image:url(../images/pict1.jpg); padding: 0 0 0 5px;/* Adjust this to suit the width of your graphic*/ } Using the CSS file will allow you to have a consistant look to multiple pages, and allow better control to the display of you pages. Kevin Petursson Upvote 0 Downvote
to make it more flexable you can place the style bit into you CSS file. HTML <ul class="pict1"> <li>one</li> <li>two</li> <li>three</li> <ul> CSS ul.pict1{ list-style-image:url(../images/pict1.jpg); padding: 0 0 0 5px;/* Adjust this to suit the width of your graphic*/ } Using the CSS file will allow you to have a consistant look to multiple pages, and allow better control to the display of you pages. Kevin Petursson