please show me how to remove #nav-above from thematic??? not use CSS. Thanks!
ThemeShaper Forums » Thematic
[closed]
How to remove #nav-above ??? help me
(5 posts)-
Posted 12 years ago #
-
//Remove nav above
function childtheme_override_nav_above(){
}I don't know if there's a better solution since filtering it isn't possible, at least that's what I see when I look at the code...
Posted 12 years ago # -
/* remove above navigation */ function remove_nav_above(){ remove_action('thematic_navigation_above', 'thematic_nav_above', 2); } add_action('init','remove_nav_above');
Posted 12 years ago # -
How do I ADD them? I have a child theme, and they were never there...
Posted 11 years ago # -
they are in the markup, but hidden w/ CSS as the default setup. try adding:
#nav-above { display: block; }
to your child's style.css
Posted 11 years ago #
Topic Closed
This topic has been closed to new replies.