do you think is possible to add the lava lamp navigation to the Atahualpa Page Menu Bar?
I think I've found something interesting here: P&P Lava Lamp nav for your WP Blog.
1. code in your header.php before the head tag closes [OK]
2. add CSS style [OK]
3. Where do I have to add the LavaLamp Navigation code?
PHP Code:
<!-- Begin Lava Lamp Navigation -->
<div id="catnav">
<ul id="nav" class="lavaLamp">
<li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
<?php wp_list_pages('title_li=&depth=1'); ?>
<?php wp_list_categories('title_li=&depth=1'); ?>
<li><?php if (is_user_logged_in()) { ?><a href="<?php echo get_option('home'); ?>/wp-admin/">Site Admin</a><?php } ?></li>
</ul>
</div> <!-- End Lava Lamp Navigation -->
Regards as always
Gianni