Hello,
I'm trying to use a complicated CSS menu and I'm having trouble figuring out how to make it work with WordPress Pages.
http://thewebdesignloft.com/blog2/
What I want to use is this:
<ul>
<?php
wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
In a static website, my navigation would look like this:
<div class="outer">
<ul>
<li>
<a href="index.php" class="xmenu2"><b class="xsnazzy">
<span class="xboxcontentd">
Home</span>
</b><b class="xtop"><b class="xb4"></b>
<b class="xb3"></b><b class="xb2"></b>
<b class="xb1"></b></b></a>
</li>
</ul>
This is taken from a menu on CSS Play found here. I'm using the one with the tabs down.
Can anyone help?