Website Shortcut Icon White Background - html

Hi ive setup a Favorite icon one my site and when I try to make a shortcut on the desktop for the website it creates a icon on the shortcut that looks like this:
But I need it to look like this:
Can anybody suggest what might be happening and what is needed to correct this issues.
Below is how i have defined the Favorite icon.
<link rel="shortcut icon" href="http://elliotrees.co.uk/favicon.ico" />

I love this site and use it for all of my websites https://realfavicongenerator.net/ It creates favicons for every device out there today and gives you the favicons and the code for the html pages

Related

can any one tell me how to add a favicon in vscode (visual studio code)

I have already checked on the internet but there some videos but not in vscode i mean (visual studio code) please help me to finish my code with HTML.
Visual Code is just a development environment. You can do the same thing in a notepad. It's same as opening a picture with paint or photoshop. Different software, same use.
If you found out what to add in your code from the video then you can do the same thing in vscode.
You just have to place this code inside your HTML header:
<link rel="shortcut icon" type="image/png" href="http://example.com/favicon.png"/>
replace the type with the right type of image and the href should be the path to
I noticed that in Firefox for Devs, I'm having issues and the favicon dosn't show up. Tried on Opera and works perfectly, even without the type="image/png" command. Keep in mind that.

Icon not appearing in browser

I am making a simple HTML webpage, I am trying to add an icon in the browser tab, I can get the icon to appear if I use a picture from online. However when I try to use a local file the icon is not visible. Here is what I used to try and embed the icon
<link rel="icon" href="/icon.ico">
Any help is appreciated, thanks
Your code works in recent Firefox.
Maybe the problem is that leading slash in the path makes browser search it in server root directory?
<link rel="icon" type="image/vnd.microsoft.icon" href="icon.ico" />

Separate icon for browser tab and 'Add To Desktop'

I've been doing some research on getting a webapp I am working on to display the proper icon / tiles in the correct situation. We have a version of our logo as an .ICO on transparent that we have been using for the icon shown in the browsers tab. No borders from a background, just the logo against the gray of the tab.
Now we want users to be able to add a home screen link to our app. This link's icon should be the logo against a gray background.
For apple this is easy:
<link rel="apple-touch-icon" href="css/touch-icon-iphone.png" />
plus any additional sizes we want to add. The apple-touch prefix makes having a separate file easy.
However, Android is presenting an issue. Currently Android will accept the apple touch icon, but this listed as depreciated and will not work soon. (https://developer.chrome.com/multidevice/android/installtohomescreen#icon) The meta tag given for adding icons to be used for Android (Chrome is the only concern) is listed as:
<link rel="icon" sizes="192x192" href="icon-name-192.png">
<link rel="icon" sizes="128x128" href="icon-name-128.png">
This will apparently overwrite the favicon when the browser sees it. Which means that if I give these images the wanted gray background, then the icons in my browser tabs will show the gray square. And if these are on transparent then when I add to desktop on ANdroid I get the icons without the gray square.
Am I missing something? This seems like a pretty common request, and yet I cant find a solution. I tried looking at the meta data for other sites where the favicon appears to be on transparency but the desktop version shows on gray / another color, but I dont see any extra tags, and so I assume they are using the apple touch version, which as stated is apprently still legal as of now.
Whats the accepted way to deal with this issue?
rel="shortcut icon" is probably what you are looking for

Customizing bookmark icon in bookmark toolbar

Can I customizie bookmark icon in my browser ? I can rename my bookmark item in bookmark toolbar of my browsers . But I have no idea which way I can modify it's icon image ( may be favicon of it's site ).
Please check below image..
It is an example as I really want to do (may be another icons and it is create by renaming) .
I would like to insert my customize image icon. Can it be possible ? Any suggestions ?
Thanks.
The bookmark icon is the favicon of your site. To add a custom favicon to your site, follow the instructions here: Adding a favicon to a static HTML page
Basically, create a 16x16 pixel image, save it as a PNG called favicon.png. Put that file in the root of your web site and then add the following to the <head> section of your website:
<link rel="shortcut icon" href="/favicon.png" type="image/png">
Be sure to add that code to every page.
Also note that it can take a little bit for the icon to update in your browser. Clearing your browser's cache, and sometimes manually trying to load the favicon.png file by going to that file in your browser, then refreshing a few times, can force the update.

Personalized icon next to the URL address in the browser's address bar?

How do I write code where a company icon appears on the left side next to the URL address in the browser's address bar?
You are looking for a Favicon.
it loads www.whateveryouron.com/favicon.ico
if your domain is robermyers.com, just put a favicon.ico 16px icon thats accessible, and you're in like flint.
just try this googles or stackoverflows
You need to create a favicon. The favicon uses a standard (in Windows, at least) .ico file. If you have a logo, you can convert it at sites like http://www.favicongenerator.com/
In the <head> of your html page, use the <link> tag to define the location of the favicon like this:
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico" />
You may need to refresh the page for the icon to display.
load a file on the webserver called favicon.ico
In modern browsers other fileformats than .ico works aswell. You can even put animated gif's in there!
DynamicDrive has an easy favicon maker too.
Different pages/directories can also call a different .ico with code similar to y0mbo's example (this is what Mint uses):
<link href="sc/ph645.43/images/icons/mint.ico" rel="icon" type="text/x-icon" />
This is a good article on favicons in detail.
I suspect animated favicons have the potential to go the way of the blink tag. Mint is using theirs to match their overall design, if you visit in FF3, you'll see that it matches the green color that FF uses to designate a recognized SSL cert.