Site Navigation Menu Issue- Random Text Displayed

Topic summary

Issue Identified:
Random text characters are appearing in website navigation dropdown menus (numeral “4”) and footer (“ADMPV”), replacing what should be icon symbols. Investigation revealed these were previously functional icons: down arrow, shopping cart, and credit card symbols.

Root Cause:
Missing or broken icon font files in the Supply theme. The font file URLs may be hard-coded instead of using Shopify’s liquid asset_url filter, causing the links to break.

Proposed Solution:

  • Locate the timber-mini.css (or timber.css.liquid) file
  • Find the @font-face declaration for icon fonts at the top
  • Update hard-coded URLs to use liquid format: {{ "icons.eot" | asset_url }}
  • Apply this pattern to all icon font formats (.eot, .woff, .ttf, .svg)
  • If not a .liquid file, extract the font-face declaration into an inline <style> tag in the theme.liquid file

Current Status:
User shared their timber.css.liquid code (which appears corrupted/reversed in the post). The conversation appears incomplete, with the final question about resolution unanswered.

Summarized with AI on November 25. AI used: claude-sonnet-4-5-20250929.

Looks like there’s supposed to be font files that includes icons for the theme but these font files are missing. If they still exist in the theme Assets folder, you may need to update the links to these files. These font URLs may be hard-coded instead of using liquid asset_url filter.