Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #253236

    hey guys, on more thing – i know its a little beyond customization support – for enfold – but:
    we need the search bar inside the main nav.
    would that be possible with a shortcode in the main nav and a script inside the functions file?

    #253410

    Hey basmati!

    Thank you for using the theme!

    You can add something like this on functions.php:

    add_action('ava_after_main_menu', 'ava_search_form_after_main_menu');
    
    function ava_search_form_after_main_menu() {
    	get_search_form();
    }

    This will add the search form on top the header but you still need to reposition it with css. Add this on Quick CSS to remove the default search icon:

    #top #menu-item-search {
    display: none;
    }

    I hope that helps. Please visit Werkpress for further customization.

    Regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.