favicon

Favicon on wordpress

我的未来我决定 提交于 2019-12-13 02:29:12
问题 I've got a problem with my favicon on wordpress, I didn't even figure it out why because it worked on firefox. But let me review the problem. I used two ways to display the favicon on my website. My first approach was to add the favicon on the head with the link tag in this way: <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/chick.png"> <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/chick.svg"> and it didn't work. Then I tried

Get 32px favicon.ico

浪尽此生 提交于 2019-12-12 22:31:46
问题 Im trying to get the 32px favicon.ico of the websites, but the response it obtain is the 16px favicon, I guess because I´m trying to obtain it by the smarthphone, but I try to change the user agent of the http petition with no result here is my code: DefaultHttpClient client = new DefaultHttpClient(); String baseUrl = getBaseUrl(url); HttpGet httpGet = new HttpGet(baseUrl + "/favicon.ico"); httpGet.setHeader("User-Agent", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.19 (KHTML, like Gecko)

Creating Javadoc HTML pages that use a favicon

旧时模样 提交于 2019-12-12 15:15:28
问题 I want to include an element in the <head> of my generated Javadoc HTML: <link rel="shortcut icon" href="my-project-icon.ico" /> Note that I'm using an Ant task to generate the Javadoc. I tried using the <header> element of the Ant task, but any markup placed there ends up within an <h1> tag, which is invalid and therefore ignored by the browser. 回答1: I would definitely modify the output files as an easy brute force solution. But a sophisticated way would be to have a custom doclet. This

Why won't my site's icon show up in Google Chrome?

半腔热情 提交于 2019-12-12 10:19:19
问题 I'm trying to get my site's icon to show up in Google Chrome, but am stumped as to why it's not. It works in IE, FF, Opera, and Safari. Here's the icon-related code currently on the page: <LINK REL="apple-touch-icon" HREF="/_images/icons/BHS2.2 - Modern 512.png" TYPE="image/png" /> <LINK REL="shortcut icon" HREF="/_images/icons/BHS2.2 - Modern.ico" TYPE="image/x-icon" /> <LINK REL="favicon" HREF="/_images/icons/BHS2.2 - Modern.ico" TYPE="image/x-icon" /> The actual page is at BHStudios.org in

Favicon is getting displayed on the admin dashboard but not on any browser

前提是你 提交于 2019-12-12 01:45:57
问题 I have added a favicon.ico file in my root directory and have also added the image as site identity. Favicon is getting displayed in my admin pages but not on any browser. Here is the link for the website "www.acrosszero.org" 回答1: Add an .ico image file (16x16 or 32x32 pixels) to the folder where is the page you want to display it. Then, in that page, edit the source code: inside the <head> tag (if it doesn't exist, you create), wich is inside the <body> tag, add: <link rel='shortcut icon'

Favicon not showing on my website

旧街凉风 提交于 2019-12-11 18:19:44
问题 For some reason my favicon doesn't show up on my website. I tested mydomain.com/favicon.ico and I can see the icon.I'm using latest version of safari. I'm using the code below in my head tags. What's the issue? Tks <link rel="icon" href="favicon.ico" type="image/x-icon" /> 回答1: Use this: <link rel="icon" type="image/ png" href="http:// example.com/ myicon.png"> 回答2: You are most likely using Internet Explorer to test the page. IE doesn't support anything but the ICO format, and your favicon

Favicon without HTML code

旧时模样 提交于 2019-12-11 17:34:33
问题 I noticed that Future Friendly's source code doesn't contain any code for their favicon. Yet, there is a blue star as their favicon in my browser's tab. Is this witchcraft? 回答1: you can just put a favicon.ico file in the root level of the website. in your sample http://futurefriend.ly/favicon.ico 回答2: You don't need code to reveal a favicon. Simply add the image to your site root folder and all newer browser (IE 7 +?) find it and show it automatically. 来源: https://stackoverflow.com/questions

Another favicon not working in IE

 ̄綄美尐妖づ 提交于 2019-12-11 16:03:11
问题 I've read through and tried all the favicon fixes already posted. Including: Refreshing the cache Using a different favicon that works on other websites Using a favicon generating website Using a Photoshop favicon plugin Using an absolute path Using a relative path It works fine in all the other browsers. I'm using IE8 in Vista via Parallels on a Mac. It's on a Moodle website and I have not altered the default Moodle code for the favicon: <link rel="shortcut icon" href="<?php echo $CFG-

How do you allow a fav icon to show in all versions of IE?

Deadly 提交于 2019-12-11 14:11:28
问题 How do you allow a fav icon to show in all versions of IE? I have fav icons that has been inserted in the root and sub-directory within the website. It will display in Chrome, Firefox, and Safari. However, it will not display in any versions of IE (I have test IE 8 and 9 with changing the environments between earlier versions using the compatibility feature). How do I make this work? I am using this code in my html and tags: <head> <link rel="shortcut icon" href="http://www.domain.com/icons

Favicon not showing up in Firefox or Chrome

↘锁芯ラ 提交于 2019-12-11 12:08:44
问题 I've uploaded a favicon.ico to my client's root (htdocs) directory on the server and added the following before the </head> tag: <link type="image/x-icon" rel="icon" href="/favicon.ico"/> <link type="image/x-icon" rel="shortcut icon" href="/favicon.ico"/> It loads fine in every browser EXCEPT for Firefox and Chrome. In those two, although the icon loads in the tab, it does not load in the web address bar. In Firefox I see a globe icon and in Chrome I see a document icon. 回答1: Isn't this