ADDING A CUSTOM FAVICON
E
Eric Wenning
Why can we add a Favicon inside of Funnel Pages, but not our DASHBOARD? This is ridiculous that it hasn't been done already (without custom code).
Copy and Paste the link (inside of media) of your Favicon should be in your Company Settings to change it or update it.
Log In
J
Jenna Leadingham
you can I have it for my account
E
Eric Wenning
Jenna Leadingham: How? And I had to add CSS given by HL and it’s screwing up the Light and Dark theme.
J
Jenna Leadingham
Eric Wenning:
Feel free to DM on the HL group
<script>
var faviconURL = 'YOUR LINK GOES HERE FOR FAVICON'
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = faviconURL
document.getElementsByTagName('head')[0].appendChild(link);
</script>