Hi,
I'm starting with my child theme, can anyone help me?
How do I delete the navigation bar under the header?
Thanks!
Hi,
I'm starting with my child theme, can anyone help me?
How do I delete the navigation bar under the header?
Thanks!
Hi,
use the following code in your child theme's functions.php:
function remove_access() {
remove_action( 'thematic_header', 'thematic_access', 9 );
}
add_action( 'init', 'remove_access' );
Chris
...wow, that worked! So easy, but I would never have it figured out by myself!
Thank you so much, Chris!
Lisa
This topic has been closed to new replies.