hI,
how can i remove the search icon from the top menu ?
thanks
Hey, I dunno if this is a proper fix, but I just added this line of css to the “Quick CSS” Box (Which can be found under Enfold Theme Options/Styling) —
#top #menu-item-search.menu-item-search-dropdown>a {display:none;}
— hope this helps :)
Hey nimrodmadar,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top #menu-item-search {
display: none;
}
The above from jakejules will also work.
Regards,
Devin
Hey!
Or open up functions-enfold.php and delete
add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
Regards,
Peter
Peter/ Devin& Jakejules
Thank you very much !