Hi @danicasati!
You have encountered a bug that some users have reported. It is a problem with the CSS value – padding. I do not have your site’s URL to prepare a custom solution, so I can propose this, which should be universal.
.dgwt-wcas-search-icon {
padding: 0px !important;
}
Paste it into Appearance -> Customize -> Additional CSS. If you aren’t familiar with custom CSS, take a look at this video.
Best regards,
Kris
Thread Starter
Dani
(@danicasati)
Icon is now visible, but with padding limitations in order to place correctly in menu.
Hi @danicasati!
Yes, this code completely removes padding. However, you can set it yourself. Check what padding other elements in your menu have by right-clicking on any of them -> Inspect. After this action, you should see the code of your page, and on the right side the CSS. There you can find the padding property for the menu element and set the same value for the .dgwt-wcas-search-icon class. You can also try to do it manually. Here you can check how padding works in CSS: https://www.w3schools.com/css/css_padding.asp
Remember to leave the value !important, this will make your CSS have the highest priority.