Solved core.js: window.head should be document.head

  • Thread starter Thread starter digitalpoint
  • Start date Start date
This topic has been solved
D

digitalpoint

Guest
Was having an issue where inline CSS wasn't being applied when using XF.setupHtmlInsert() as expected.

Turns out, the inline CSS is being applied to window.head, but that's not a thing. It should be document.head. Changed it and inline CSS started working as expected.

Continue reading...