Hi,
I'm trying to find the easiest/best way to create a vertical navigation in the same container as the header.
I had planned to hide the current navigation.
Any direction would be welcomed.
Many thanks
D
Hi,
I'm trying to find the easiest/best way to create a vertical navigation in the same container as the header.
I had planned to hide the current navigation.
Any direction would be welcomed.
Many thanks
D
See hand-coding a dynamic menu: http://themeshaper.com/wordpress-menu-tricks/
Though I think you will have to edit it so that you are deleting thematic_access and then putting your child menu in it's place, instead of filtering wp_page_menu.
// Remove default Thematic actions
function remove_thematic_actions() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init','remove_thematic_actions');
function child_menu{
YOUR MENU HERE
}
add_action('thematic_header','child_menu',9);
From there you can style is w/ CSS to look the way you want.
Thanks Helga,
As you might expect, I stayed up all night figuring out a workaround. I used a combination of the menubar plugin and adding additional containers to the content div of the page. I'll give your fix a go though.
many thanks
D
Stayed up all night? I've so done that before. Glad you got it sorted tho.
This topic has been closed to new replies.