Replace Search of Menu Bar

How to replace the search in the left corner of the menu bar per an image?

Hi @mateus37422,

I hope you are well today and thank you for your question.

Do you want to replace search of Menu Bar with an image or do you want to move it to left side of the menu?

Please advise.

Kind Regards,
Movin

replace search of Menu Bar with an image

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


.nav-search {
    background: url("https://colorlib.com/wp/wp-content/uploads/sites/2/colorlib-logo-top.png") no-repeat center;
    width: 200px;
    height: 100px;
    background-size: 100%;
}

.nav-search form {
    display: none;
}

Please change the image URL to whatever you want to display in place of search form in the menu.