Jazu Posted April 20, 2007 Posted April 20, 2007 Please help me! I want create categories menu, which use only ul and li tags. (Note: I found some contribute CSS Menu, which use ul and li tags, but it was "dropdown menu" and I don´t want that kind of menu.) I want that new menu work almost same way like original menu. The reason, why I want menu like that is because it´s _very_ simple to modified look like just how I want.) I have use too much time to think about that and I´m so frustrated right now... :'( Next you can see example that what I mean. ORIGINAL SOURCE: <td class="boxText"> <a href="http://www.mydomain.com/index.php?cPath=1"><b>Hardware</b>-></a><br> <a href="http://www.mydomain.com/index.php?cPath=1_17">CDROM Drives</a><br> <a href="http://www.mydomain.com/index.php?cPath=1_4">Graphics Cards-></a><br> <a href="http://www.mydomain.com/index.php?cPath=1_8">Keyboards</a><br> <a href="http://www.mydomain.com/index.php?cPath=1_16"><b>Memory</b></a><br> <a href="http://www.mydomain.com/index.php?cPath=1_9">Mice</a><br> <a href="http://www.mydomain.com/index.php?cPath=1_6">Monitors</a><br> <a href="http://www.mydomain.com/index.php?cPath=1_5">Printers</a><br> <a href="http://www.mydomain.com/index.php?cPath=1_7">Speakers</a><br> <a href="http://www.mydomain.com/index.php?cPath=2">Software-></a><br> <a href="http://www.mydomain.com/index.php?cPath=3">DVD Movies-></a><br> </td> WHAT I WANT: <div id="product_categories"> <ul class="categories_menu"> <li><a href="http://www.mydomain.com/ndex.php?cPath=1" class="selected">Hardware</a> <ul> <li><a href="http://www.mydomain.com/index.php?cPath=1_17">CDROM Drives</a></li> <li><a href="http://www.mydomain.com/index.php?cPath=1_4">Graphics Cards-></a></li> <li><a href="http://www.mydomain.com/index.php?cPath=1_8">Keyboards</a></li> <li><a href="http://www.mydomain.com/index.php?cPath=1_16" class="selected">Memory</a></li> <li><a href="http://www.mydomain.com/index.php?cPath=1_9">Mice</a></li> <li><a href="http://www.mydomain.com/index.php?cPath=1_6">Monitors</a></li> <li><a href="http://www.mydomain.com/index.php?cPath=1_5">Printers</a></li> <li><a href="http://www.mydomain.com/index.php?cPath=1_7">Speakers</a></li> </ul> </li> <li><a href="http://www.mydomain.com/index.php?cPath=2">Software-></a></li> <li><a href="http://www.mydomain.com/index.php?cPath=3">DVD Movies-></a></li> </ul> </div> Quote
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.
Note: Your post will require moderator approval before it will be visible.