I have a search input field, which has a backround set up like this:
background: #ededed url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
But, I would like to replace the image for an icon. I am using and have tried to do it like this:
input[type=search]:before {
font-family: 'Ionicons';
content: '\f2f5';
color: red;
}
This is the fiddle. But, icon is not visible, what should I do?