Latest Lists

IMAGE UNORDER LIST HTML HELP plz & ty?

i have to create this unorder list instead of bullets i need images. i got my images but whats the attribute for the <UL ?????> & do i need to make a style sheet for this. IT HAS TO BE A UL LIST, ty problem i need to do Football (img of footballteam) 34 (img of differentfootballteam) 27 Basketball (imgoffootballteam) 98 (imgofdifferentfootballteam) 55 its like a pattern...i know im a confusing person but im so tired of trying to figure this out, i need to go to bed -_-

Public Comments

  1. Example with inline style: <ul style="list-style-image: url(images/football-team-34.jpg)"> <li>34</li> </ul> <ul style="list-style-image: url(images/football-team-27.jpg)"> <li>27</li> </ul> etc..
  2. HTML <div id="navcontainer"> <ul id="navlist"> <li id="active"><a href="#" id="current">Item one</a></li> <li><a href="#">Item two</a></li> <li><a href="#">Item three</a></li> <li><a href="#">Item four</a></li> <li><a href="#">Item five</a></li> </ul> </div> CSS #navlist { margin-left: 0; padding-left: 0; list-style: none; } #navlist li { padding-left: 10px; background-image: url(images/arrow.gif); background-repeat: no-repeat; background-position: 0 .5em; }
Powered by Yahoo! Answers