I attempted to personalize my webpage by adding an image to a list, but I couldn't get the list-style image to work.
You can view the page at
Below is the code I used:
CSS
/* Fleet List */
ul#flotta li
{
list-style-image:url("http://ctp.servizieweb.it/wp-content/uploads/2013/07/freccia.png");
}
(I also tried using ../07/freccia.png for the URL)
MY PAGE
<ul id="flotta">
<li>Augusta 109 (06 pax / 300 k/h)</li>
<li>Augusta 206 (04 pax / 240 k/h)</li>
<li>Robinson R44 (03 pax / 200 k/h)</li>
<li>Robinson R22 (01 pax / 180 k/h)</li>
<li>Cessna (10 pax)</li>
<li>Mercedes S series</li>
</ul>
However, I cannot see the image on the list. What am I doing wrong? Can someone help me figure this out? Thank you!