Hi All,
I already asked this question but worded slightly differently, hopefully this explains better what I want to do.
The following site has a menu on the left with sub pages (just 1 at the moment as I am testing it out before building the whole thing up):
http://anandimages.co.uk/?page_id=4
I want the sub page drop down that appears when you hover over India to slide everything down rather than sit over the top of the next parent menu items. I understand Jquery is enabled in thematic. What do I have to do to make this happen?
This is the code in my functions.php that builds the menu:
'
// remove thematic_access()
function remove_access() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init', 'remove_access');
#
// INSERT on header
#
function childtheme_access_menu() {
{ ?>
<div id="access">
<div class="skip-link">"><?php _e('Skip to content', 'thematic'); ?></div>
<?php wp_list_pages('sort_column=menu_order&depth=3') ?>
</div><!-- #access -->
<! ourchildtheme_access_menu ends here >
<?php }
} // end of our new function childtheme_access_menu
// Now we add our new function to our Thematic Action Hook
add_action('thematic_header','childtheme_access_menu');
'
Thanks in advance.
Rob