Don't know if I'm 'cursing in the church' by wanting to change the hotglue favicon of my hotglue website, but I'll take the risk and ask it anyway
So yeah.. Is there a way to change the hotglue favicon of my website..? Or at least remove the hotglue-gun?
I like hotglue super-a-lot! I just don't like guns I guess..
hey! i did that, but appereantly it doesnt work on Chrome, but works on Firefox,,
you'll have to put this code on every page you want to change the favicon icon:
< link rel="icon" type="image/png" href=" image url here " / >
xoxo
Hi biarritzzzzzzzzzz!
Thank you for the reply! Unfortunately I'm not computer geeky enough to apply it to my website (i wish i was!).. I have a hotglue website, tried to put the link in the 'add/edit custom code'. I made a page with just the picture i would like as favicon and put the link to that page after href=".. But that didn't work.
Dear biarritzz do you maybe have the golden hint to save me? Because I would just love to have this acorn as a favicon to my squirrel website (yep: i'm not a computergeek but at least a geek).
Byebye!
Oh yes! In the end I managed to kind of do it. For now it only works if I give a link of an other website and not if I give the link of the page I made..
This would be nice, because I would like my favicon to be like Destiny's Child: ...independent. So golden advise is still very welcome
bye!
Here is a proper way of adding a favicon to your Hotglue site:
<link rel="shortcut icon" href="https://yoursite.hotglue.me/?start.head.147613886210" />
hello there, is there anyway to delete the favicon altogether? or can it only be replaced?
I would also like to know how to remove the favicon altogether instead of replacing it. Many thanks!
you can remove the favicon by adding the following code to the <head> section of your site http://yoursite/?code:
<head>
<link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon" />
the code adds a transparent icon.
Hi Danja! I appreciate your help.This works for Firefox but not for Chrome..Any suggestions?Thanks!Tamara
[edit]somehow stopped working for firefox...
Hi, I have managed to find out how to change the Favicon on Hotglue, I made a tutorial in Spanish about it, I believe the images make it easy to understand for English speakers as well but you can always google translate as well, hope this helps https://gissellegiron.hotglue.me/?favicon/
thanks @gissellegironi used your guide but as i already had the favicon did the following
windows (powershell)
$faviconPath="path/to/favicon.ico" $base64 = [System.Convert]::ToBase64String([System.IO.File]::ReadAllBytes($($faviconPath))) write-host "<a href='data:image/x-icon;base64,$base64' rel="icon" type="image/x-icon" />"
linux/osx
faviconPath="path/to/favicon.ico" base64=$(base64 -w 0 "$faviconPath") echo "<link href='data:image/x-icon;base64,$base64' rel='icon' type='image/x-icon' />"
yourpage.hotglue.me/?code