Hi,
I'm trying to hook the nav into a custom function rather than using the slated hooks. This is what I've got,
http://www.studio2055.com/dev/aero/#home-pane-one
PHP Code:
function _home_navigation() {
echo '<div id="nav">' . genesis_nav() . '<div>';
echo '<ul class="tabs">
<li><a href="http://www.studio2055.com/dev/aero#home-pane-one">Tab 1</a></li>
<li><a href="http://www.studio2055.com/dev/aero#home-pane-two">Tab 2</a></li>
<li><a href="http://www.studio2055.com/dev/aero#home-pane-three">Tab 3</a></li>
</ul>';
}
I've managed to get the nav in there, but it just comes in as a regular unordered list. Is there a way to get the nav in there with all the navigational css?