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?
1:http://i.imgur.com/9TBTnzq.jpg
2:http://i.imgur.com/seanBIr.jpg
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