favicon

Favicon is not showing on chrome

淺唱寂寞╮ 提交于 2019-12-11 11:45:37
问题 Favicon icon is not showing on chrome browser but it is coming on firefox.I am using this line of code : <link rel="shortcut icon" href="${resource(dir:'images',file:'favicon.ico')}" type="image/x-icon" /> 回答1: You can not show it in Chrome. Default Globe icon will be displayed for http sites and lock icon will be default for https sites. 来源: https://stackoverflow.com/questions/12705906/favicon-is-not-showing-on-chrome

Favicon won't load, even when going to the direct URL

时间秒杀一切 提交于 2019-12-11 10:07:35
问题 The favicon isn't working on my site. If I go to google.com/favicon.ico I see the image displayed. But for some reason on my site, lucasjohnson.co.uk/favicon.ico prompts me to download a file. I have even tried replacing my own favicon with Google's, but I still have the same problem. Edit: The file ico file was converted from a png using Dynamic Drive's FavIcon Generator. 回答1: I checked http://www.lucasjohnson.co.uk/favicon.ico, and the response content-type is text/plain . There are several

Android WebView getFavicon() returning null

纵饮孤独 提交于 2019-12-11 08:56:34
问题 I'm trying to get the favicon of the loaded page after using WebView webView = new WebView(getActivity()); webView.loadUrl("http://" + url); I'm attaching the asynchronous WebViewClient to the WebView to get the favicon after it loads webView.setWebViewClient(new WebViewClient() { @Override public void onPageFinished(WebView view, String url) { String linkTitle = view.getTitle(); Bitmap favicon = view.getFavicon(); onLinkUrlFinished(url, linkTitle); } }); The favicon getting back is always

Use Google Favicon but Don't get default globe. when no Favicon exists

删除回忆录丶 提交于 2019-12-11 08:08:09
问题 How can we check favicon provided by Google API is the default globe? https://www.google.com/s2/u/0/favicons?domain=facebook.com returns the favicon of the facebook, where as https://www.google.com/s2/u/0/favicons?domain=anyRandomFakeDomain.io returns the globe as the favicon. How can I (with JS in the browser ONLY) check if the favicon is default globe or not? 来源: https://stackoverflow.com/questions/54970570/use-google-favicon-but-dont-get-default-globe-when-no-favicon-exists

WordPress Favicon not showing on Google Chrome tab

血红的双手。 提交于 2019-12-11 08:04:23
问题 Since a few weeks, the favicon of my webzine is no longer displayed, and this on the browser of my work, but also on my personal PC. I do not think I have changed the configuration. I tried to re-upload it, to no avail. https://www.yubigeek.com/ In the Google Chrome Developer Console, there is an error on favicon.ico (404) but in the source code of the page, this URL is not called. There are however two tag link with a rel = "icon" and the URL of the favicon, if I click on the links, the

Shortcut icon problem in firefox

放肆的年华 提交于 2019-12-11 03:51:26
问题 For me, favicon is not appearing in FireFox 3.6 but is working in IE7. In Firefox, when the page is loading I am able to see my favicon. But once the page is completely loaded, I am not seeing my favicon. And if I refresh my page, favicon re-appears. Here is how I call my favicon. <link rel="shortcut icon" href="img/eConcierge_win.ico" /> What could be wrong? 回答1: Just make sure to always put the favicon in the root directory of your site, and name it favicon.ico . And please change your

Favicon not working in Internet Explorer

喜欢而已 提交于 2019-12-10 21:18:51
问题 I've done everything I could find to make favicon work, but only on IE it doesn't work. This is in the <head> <link rel="shortcut icon" href="//www.site.com/img/favicon.ico"> I tried to create a favicon with favicon.co.uk and favicon-generator.org/, but nothing works in IE. It's 16x16 and a .ico file. In google Chrome and Firefox it's working just fine. When bookmarking in IE, it's also showing the icon. But not in the top bar. What's wrong here ? Edit: I also tried this: <link rel="shortcut

Add a favicon to redmine theme

时间秒杀一切 提交于 2019-12-10 20:06:41
问题 redmine uses the favicon placed at /usr/share/redmine/public/favicon.ico I found a lot of code snippets using cd /usr/share/redmine/; grep -HR favicon app/ app/helpers/application_helper.rb: def favicon app/helpers/application_helper.rb: "<link rel='shortcut icon' href='#{favicon_path}' />".html_safe app/helpers/application_helper.rb: # Returns the path to the favicon app/helpers/application_helper.rb: def favicon_path app/helpers/application_helper.rb: icon = (current_theme && current_theme

favicon.ico not displaying in spring mvc 3.2.2 per Tomcat 7.0?

十年热恋 提交于 2019-12-10 19:09:07
问题 I'm new to spring mvc and my favicon.ico is not showing up in browser tab using spring 3.2.2 using tomcat 7.0. I have tried looking at related googling but still cannot get it to show up in the browser tab (FF, Chrome, IE...all latest versions to not work) as well as clearing cache and restarting browser. favicon.ico Located in root of webapp folder (src/main/webapp) index.jsp <!DOCTYPE html> <html> <head> <link href="favicon.ico" rel="shortcut icon" > o o o mvc-dispatcher-server.xml <context

Can I change a favicon daily

不羁岁月 提交于 2019-12-10 13:18:48
问题 I'm working on a calendar app site for internal use here. It's basically a wrapper for a google calendar page, but there will be some extra stuff at the top with the calendar down below. One kind of "fun" thing I'd like to do with this is change up the favicon for the page each day - I'm using a kind of calendar image and I'd like it to show the image for the current day. Is this possible? I'm using asp.net webforms, but I'm really asking the question at a lower level - is it possible to make