Jump to content

Loop icon for PHP Search


TrevorR
Go to solution Solved by Moorcam,

Recommended Posts

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.

Link to comment
Share on other sites

  • Solution
      <input type="text" class="searchTerm" placeholder="What are you looking for?">
      <button type="submit" class="searchButton">
        <i class="fa fa-search"></i>
     </button>

You need Font Awesome. If you have it, try the above. 

https://fontawesome.com/icons?d=gallery&p=2

 

Edited by DanEthical
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.