Enfold IcoMoon Icon Font Package
================================

Contents
--------
- fonts/icomoon.eot
- fonts/icomoon.woff2
- fonts/icomoon.woff
- fonts/icomoon.ttf
- style.css
- demo.html

How to Install (Child Theme Method)
-----------------------------------
1) Copy this whole folder into your Enfold child theme, e.g.:
   wp-content/themes/enfold-child/custom-icons/

2) Enqueue or import the CSS:
   - Preferred (enqueue in functions.php of the child theme):
       function child_icons() {
         wp_enqueue_style('child-icomoon-icons', get_stylesheet_directory_uri() . '/custom-icons/style.css', [], null);
       }
       add_action('wp_enqueue_scripts', 'child_icons');

   - Or paste the @font-face + .icon base rules from style.css into Enfold → General Styling → Quick CSS,
     but then update the URLs in @font-face to absolute URLs pointing to the font files.

3) Find the codepoints:
   - Open custom-icons/demo.html in your browser (upload it somewhere or open locally).
   - Look for cells that show an actual icon (not an empty box). Note its code (e.g. \e90a).

4) Create readable class names:
   - In style.css, add a mapping for each icon you care about, for example:
       .icon-logo:before { content: "\e90a"; }
       .icon-arrow-right:before { content: "\e90b"; }

5) Use in your markup:
   - Example in Enfold elements or a Code Block:
       <i class="icon icon-logo icon-2x" aria-hidden="true"></i>

Notes
-----
- If you still have your original IcoMoon ZIP (selection.json), Enfold → Iconfont Manager can import it
  and auto-generate classes. Without selection.json, the child-theme method above is the most reliable.
- The codepoint ranges tried in demo.html are common defaults for IcoMoon (E900+). Your icons may land
  in EA00–EBFF as well. The demo tries multiple ranges to help you locate them.