Hello!
My website is: http://hobeandlucas.wpengine.com. (hosted on WPengine) Is there anyway I can add a visual search bar to the top navigation instead of just the magnify glass?
Thanks in advance!
Hey hobeadmin!
Thank you for using Enfold.
Please use this on functions.php:
add_action( 'ava_after_main_menu', 'add_search', 10);
function add_search() {
$search = get_search_form(false);
$output = "<div class='searchbar'>";
$output .= $search;
$output .= "</div>";
echo $output;
}
Add this on Quick CSS or custom.css to adjust the position of the search form and remove the search icon:
#top #menu-item-search {
display: none;
}
.searchbar {
position: absolute;
right: 0;
top: 10px;
z-index: 1000;
}
Cheers!
Ismael
Thank you so much for your help!
Where do I find the functions.php?