I appear to have the same problem mentioned in this post: Audio player icons not loading
However, I have disabled the CDN and all caching and the problem still remains (but only on the Audio player, all other icons load as SVG as you’d expect).
The code on the front end appears to differ to that in Cornerstone:
<div class=“mejs-button mejs-playpause-button mejs-play”>
<button type=“button” aria-controls=“mep_0” title=“Play” aria-label=“Play” tabindex=“0”>
</div>
The css is still trying to load the icon onto the ‘before’ pseudo element as a font:
.mejs-button button:before {
content: “\f065”;
display: block;
margin: 0 auto;
font-family: FontAwesome !important;
font-style: normal !important;
font-weight: 400 !important;
text-decoration: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
The problem page is here (you’ll see that all other icons are loading on the page as SVG): https://mollykarloff.co.uk/epk/music/
Is there something else I’m missing here? Why is only the audio player affected?