Full Width Nav in Thesis


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function full_width_nav() { ?>
  2. <div id="nav_area" class="full_width">
  3. <div class="page">
  4. <?php thesis_nav_menu(); ?>
  5. </div>
  6. </div>
  7. <?php }
  8. remove_action('thesis_hook_before_header', 'thesis_nav_menu');
  9. add_action('thesis_hook_before_content_area', 'full_width_nav');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.