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. Link to comment https://forums.phpfreaks.com/topic/121729-solved-bullets-from-hellllll/ 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> Link to comment https://forums.phpfreaks.com/topic/121729-solved-bullets-from-hellllll/#findComment-627974 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. Link to comment https://forums.phpfreaks.com/topic/121729-solved-bullets-from-hellllll/#findComment-627995 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.