Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #437129

    hi. is it possible to show the search at another position?

    #437131
    This reply has been marked as private.
    #438686

    Hey!

    Thank you for using Enfold.

    Add this to the functions.php:

    add_action('ava_inside_main_menu', 'ava_inside_main_menu_mod');
    function ava_inside_main_menu_mod() {
    	get_search_form();
    }

    Remove the default search icon on Enfold > Header > Extra Elements panel.
    Cheers!
    Ismael

    #438721
    This reply has been marked as private.
    #438725
    This reply has been marked as private.
    #439481

    Hi!

    You can add this in the Quick CSS field to adjust the position:

    .main_menu form#searchform {
      position: absolute;
      right: 0;
      top: 10px;
    }

    Best regards,
    Ismael

    #439822
    This reply has been marked as private.
    #440235

    Hey!

    Add this one:

    @media only screen and (max-width: 767px) {
    .main_menu form#searchform { display: none; }
    }

    Best regards,
    Ismael

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