How i can remove search box in header. Theme is Brightpage
-
Hi, I am a newbie and less experienced but would like to customize my website using theme Brightpage
I need to remove search box from the navigation panel..it can be done easily by deleting the “search form” part from this code but the problem is that the categories buttons stay on left side and the right is empty.. I basically don’t know how to wide the navigation menu then. Any advice? Thanks!<!– BEGIN TOP NAVIGATION –>
<div id=”top-nav” class=”clearfix”>
<div id=”menu” class=”grid_1 first”>
<?php
if (function_exists(‘wp_nav_menu’)) {
wp_nav_menu(array(‘theme_location’ => ‘wpj-main-menu’, ‘menu_id’ => ‘dropmenu’, ‘fallback_cb’ => ‘wpj_default_menu’));
}
else {
wpj_default_menu();
}
?>
</div> <!– end div #menu –><div id=”search” class=”grid_2 last”>
<?php get_template_part( ‘searchform’ ); // Search Form (searchform.php) ?>
<div class=”icon-popup”>
” title=”<?php _e(‘Syndicate this site using RSS’, ‘Brightpage’); ?>” id=”rss-icon”><?php _e(‘<abbr title=”Really Simple Syndication”>RSS</abbr>’); ?>
<?php _e(‘Subscribe’, ‘Brightpage’); ?>
</div> <!– end div .icon-popup –></div> <!– end div #search –>
</div> <!– end div #top-nav –>
<!– END TOP NAVIGATION –>
- The topic ‘How i can remove search box in header. Theme is Brightpage’ is closed to new replies.