Hi,
You can try this css code.
#primary-menu > #menu-menu > li:nth-child(6) {
margin-left: 50px;
}
This will add a 50px margin gap between your Phone Link and your search icon.
I’ve noticed that your search icon isn’t vertically aligned w/ the cart icon. If you want to fix that as well simply use this code instead.
#primary-menu > #menu-menu > li:nth-child(6) {
margin-left: 50px;
display: flex;
align-items: center;
}
This will turn the menu item into a flexbox that lets us use the align-items css property so we can vertically center align its content(the search icon).
Let us know if it works for you.
A wise man once said:
"Have you cleared your cache?"