How do I add a Font Awesome icon to input field?

前端 未结 8 1744
野性不改
野性不改 2020-11-28 01:36

How do I use the search icon included in Font Awesome for input? I have a search feature on my site (based on PHPmotion), that I want to use for the search.

Here\'s

8条回答
  •  广开言路
    2020-11-28 02:13

    For those, who are wondering how to get FontAwesome icons to drupal input, you have to decode_entities first like so:

    $form['submit'] = array(
    '#type' => 'submit',
    '#value' => decode_entities(''), // code for FontAwesome trash icon
    // etc.
    );
    

提交回复
热议问题