How can I resize my search icon to 48x48px?


how do i change the search icon to match the 48x48px size of the other icons?

Add the below line of CSS code at the end of your theme.css file.

body svg.icon.icon-search{
height:20px !important;
width:20px !important;
}

@mysacredsoul add below css into theme.css file

svg.icon.icon-search {
    width: 19px !important;
    height: 30px;
}