Hello i want the navigation left aligned and the search icon right-aligned in the header container. But the search icon is in the navi-list which is set to float left. how can i achieve that?
thanks!
Hey kopf-und-stift,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#menu-item-search {
position:absolute;
right:0;
}
Best regards,
Vinay
thanks vinay for response! but when i hover the icon it jumps to the menu. (look at the attached website). I cant find the css rule for only hovering the icon….plz help :)
Hi,
To fix the hover issue please add the below css
.html_header_top.html_bottom_nav_header #top .main_menu ul:first-child>li#menu-item-search:hover {
position: absolute;
}
Best regards,
Vinay