ultrus Posted August 28, 2008 Share Posted August 28, 2008 Hello, I'm trying to create a bulleted list with different images as bullets at different levels. Here is a link to a demo that is NOT working: http://www.christopherstevens.cc/fun/bulletsFromHell.html Any thoughts on how I would correct the doubled bullets and position the images better? Here is the code: ... <style type="text/css"> ul { list-style-type: none; list-style-image: url(http://christopherstevens.cc/fun/bulDiamSB.gif); } ul ul { list-style-type: none; list-style-image: url(http://christopherstevens.cc/fun/bulDiamSB2.gif); } ul ul li:before { list-style-image: none; } ul ul ul { list-style-type: none; list-style-image: url(http://christopherstevens.cc/fun/bulDiamS.gif); } ul ul ul ul { list-style-type: none; list-style-image: url(http://christopherstevens.cc/fun/bulDiamS2.gif); } </style> ... <ul> <li>level 1-1</li> <li> <ul> <li>level 2-1</li> <li> <ul> <li>level 3-1</li> <li> <ul> <li>level 4-1</li> <li>level 4-2</li> </ul> </li> <li>level 3-2</li> </ul> </li> <li>level 2-2</li> </ul> </li> <li>level 1-2</li> </ul> Thanks much in advance! This is driving me nuts today. Quote Link to comment Share on other sites More sharing options...
rhodesa Posted August 28, 2008 Share Posted August 28, 2008 get rid of the LI tag around the child UL tag... <ul> <li>level 1-1</li> <ul> <li>level 2-1</li> <ul> <li>level 3-1</li> <ul> <li>level 4-1</li> <li>level 4-2</li> </ul> <li>level 3-2</li> </ul> <li>level 2-2</li> </ul> <li>level 1-2</li> </ul> Quote Link to comment Share on other sites More sharing options...
ultrus Posted August 28, 2008 Author Share Posted August 28, 2008 Whoa that was easy! Thanks you very much for that. It appears I was making it overly complicated. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.