ThemeShaper Forums » Thematic

[closed]

How to remove #nav-above ??? help me

(5 posts)
  • Started 13 years ago by nguyenduyphuong
  • Latest reply from helgatheviking
  • This topic is not resolved

Tags:

  1. nguyenduyphuong
    Member

    please show me how to remove #nav-above from thematic??? not use CSS. Thanks!

    Posted 13 years ago #
  2. adred
    Member

    //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 13 years ago #
  3. /* remove above navigation */
    function remove_nav_above(){
    	remove_action('thematic_navigation_above', 'thematic_nav_above', 2);
    }
    add_action('init','remove_nav_above');
    Posted 13 years ago #
  4. How do I ADD them? I have a child theme, and they were never there...

    Posted 12 years ago #
  5. 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 12 years ago #

RSS feed for this topic

Topic Closed

This topic has been closed to new replies.