Looks like you were able to resolve this?
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(ortimber.css.liquid) file - Find the
@font-facedeclaration 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
.liquidfile, 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.