Hello, Go to Appearance > Widget and drag "Search" widget and drop it in the Home Page Sidebar Widget Area, It will automatically display at your footer. Thanks & Regards Gourav Shrivastava
Instead of having the search bar display at the bottom can it be displayed somewhere at the top of the page?
Hello, Go to the header.php file present in your theme directory and add the code given below in that file as shown in the image given below. Code: <br> <div class="top_search"><?php get_search_form(); ?></div> Now, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: body > div.header_container.home > div > div.grid_24 > div > div.header_wrapper > div.grid_14.omega { text-align: right; } .header_wrapper .call-us { float: none; } .header_wrapper .top_search { float: right; margin-top: 5px; } .menu-wrapper { margin-top: 0px; } This will solve your issue.