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

    is it possible to open the search at its position to the left? like here 1=mouse off 2=mouse over and click

    and can i move the main menu next to the logo?

    http://www.alfaweb.at/test/

    1:http://i.imgur.com/9TBTnzq.jpg
    2:http://i.imgur.com/seanBIr.jpg

    #423887

    Hi alfaweb2!

    Thank you for using Enfold.

    Move the menu position with this:

    .main_menu {
      position: absolute;
      left: 200px;
    }

    Add this to remove the default search icon:

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

    Add this to the functions.php file to show the default search:

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

    Cheers!
    Ismael

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