The background search icon image was replaced with an FA icon when phpBB 3.2 was released.
There is some left over unused CSS in the forms stylesheet.
File:
forms.css
|
Find:
.search-box .inputbox {
|
background-image: none;
|
border-right-width: 0; |
border-radius: 4px 0 0 4px; |
float: left; |
height: 24px;
|
padding: 3px;
|
-webkit-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
box-sizing: border-box;
|
}
|
Change To:
.search-box .inputbox {
|
border-right-width: 0; |
border-radius: 4px 0 0 4px; |
float: left; |
height: 24px;
|
padding: 3px;
|
-webkit-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
box-sizing: border-box;
|
}
|
Delete:
input.search {
|
background-image: none;
|
background-repeat: no-repeat;
|
background-position: left 1px;
|
padding-left: 17px;
|
}
|