Is it possible to add a search bar to the menu aligned to the right side?
I have tried to use this code:
//wordpress search in menu bar
add_filter('wp_nav_menu_items','add_search_box', 10, 2);
function add_search_box($items, $args) {
ob_start();
get_search_form();
$searchform = ob_get_contents();
ob_end_clean();
$items .= '<li>' . $searchform . '</li>';
return $items;
}
But the result is this:

Any possible solutions?
Thanks in advance