Skip to content

Instantly share code, notes, and snippets.

@epierpont
Created March 19, 2015 15:27
Show Gist options
  • Save epierpont/fc52e75c450a2973f5ae to your computer and use it in GitHub Desktop.
Save epierpont/fc52e75c450a2973f5ae to your computer and use it in GitHub Desktop.
WP - Search form with font awesome
nav form .search-field {
border: 0;
}
nav form .search-submit {
font-family: 'FontAwesome';
border: 0;
}
// must include font awesome for search icon http://fortawesome.github.io/Font-Awesome/
<form role="search" method="get" class="search-form" action="<?php echo home_url(); ?>">
<input type="search" class="search-field" name="s" value="looking for something">
<input type="submit" class="search-submit" value="&#xf002;">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment