Hello,
I have hereunder and I would like to have a loop icon instead of the text search. Exactly like this : https://codepen.io/huange/pen/rbqsD
<input type="submit" value="<?php echo "search"; ?>" class="loop1" />
in CSS file (what I have tried):
.loop1 { font-size: 0; } .loop1::before { content: "\f002"; font-family: FontAwesome; padding-right: 10px;}
Another try (included style in HTML):
<input type="submit" value="<?php echo '<i class="fa fa-search"></i>'; ?>" class="loop1" />
Both fail, thanks for any hint.