Quantcast
Channel: Tishonator
Viewing all articles
Browse latest Browse all 293

TishCreative: Remove Search from Header Menu

$
0
0

If you use our creative WordPress Theme (TishCreative), you may want to make the look even more simplistic and minimal by removing the search icon and popup from the header. There 2 options to achieve that:

Option 1: Delete it from Header Template

1. Login to your Admin Panel

2. Navigate to Left Menu -> Appearance -> Theme File Editor

3. Open header.php file for edit

4. DELETE the following code

<div class="bd-header__search d-none d-md-block p-relative">
                              <div class="bd-header__search-wrapper">
                                 <button class="bd-header__search-btn"><i class="fa fa-search"></i></button>
                                 <button class="bd-header__search-btn-close"><i class="fa fa-times"></i></button>
                              </div>
                              <div class="bd-header__search-form">
                                 <form action="<?php echo esc_url( home_url('/') ); ?>">
                                    <input type="text" name="s" placeholder="<?php esc_html_e( 'Search...', 'tishonator' ); ?>" required="">
                                    <button type="submit"><i class="fa fa-search"></i></button>
                                 </form>
                              </div>
                           </div>

5. Save Changes

Option 2: Hide with CSS

1. Login to your Admin Panel

2. Navigate to Left Menu -> Appearance -> Customize -> ‘Additional CSS’ Section

3. insert the following code:

.bd-header__search {
  display: none !important;
}

4. Save changes


Viewing all articles
Browse latest Browse all 293

Trending Articles