|  | 
 
| How to remove top search box in question2answer See demo : http://thuvienxanh.com
 Open qa-theme/<your-theme>/qa-theme.php file and locate the function:
 Replace with
 
 Bonus tips:Sao chép mãfunction nav_user_search() { }
Display search box in the main top widget:
 1. Install q2a-widget-anywhere
 2. Add new widget : search box in main top
 with the following content
 
 Sao chép mã
    <div class="qa-search">
    <form method="GET" action="../search">
    <input type="text" name="q" value="" class="qa-search-field">
    <input type="submit" value="Search" class="qa-search-button">
    </form>
    </div>
 
 
 
 | 
 |