I have uploaded .ico file for favicon and its working fine as favicon in all browsers. But when i try to show this .ico file in HTML image tag in IE, it is not displayed correctly. Please help.
How to display .ico image file in IE
1.9k Views Asked by Shaibi Rana At
1
There are 1 best solutions below
Related Questions in PHP
- php Variable name must change in for loop
- register_shutdown_function is not getting called
- Query returning zero rows despite entries existing
- Retrieving *number* pages by page id
- Automatically closing tags in form input?
- How to resize images with PHP PARSE SDK
- how to send email from localhost using codeigniter?
- Mariadb max Error while sending QUERY packet PID
- Multiusers login redirect different page in php
- Imaginary folder when I use "DirectoryIterator" in PHP?
- CodeIgniter + XDebug: debug only working in the main controller, index() function
- PHP script timeout when I use sleep()
- posting javascript populated form to another php page
- AJAX PHP - Reload div after submit
- PHP : How can I check Array in array?
Related Questions in HTML
- Delay in loading Html Page(WebView) from assets folder in real android device
- Why does a function show up as not defined
- CSS Class is not applying to element (border width,color,and style attributes)
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- Automatically closing tags in form input?
- Positioning child at bottom of parent with scroll
- Remove added set of rows
- Website zoomed out on Android default browser
- Twitter Bootstrap horizontal form elements on a line
- http://sigmajs.org/ les mis tutorial - why are my canvases 0 height?
- My navbar is not expanding after collapse
- when a checkbox is checked how to display a different hidden element using javascript
- Gaps Vertically Using Dividers
- Svg containers not positioning properly
Related Questions in INTERNET-EXPLORER
- How do I wrap text in a pre tag for Internet explorer?
- How do I extract info from crunchbase
- Jquery on submit ajax post needs two clicks in IE
- SSL certificate error 403.13 in IIS 7.5
- Hiding Script Errors popups in IE8
- Internet explorer 11 browser cannot display the expires value of the session cookie from my app
- Internet Explorer hover/rgba/opacity/css3 compatibility
- How to wait for a java applet to load when automating Internet Explorer?
- Javascript Event.originalEvent.path IE8 error
- cursor: copy not working in Internet Expoler
- input[type="submit"][disabled] not working for IE8
- Auothotkey: Remove string, placement string in subject box
- Why does IE show junk for my dasBlog blog?
- Lag in scrolling behavior on IE 10 and IE Edge modes
- Using angularJS click on enter form functionality in Internet Explorer
Related Questions in DEFAULT.PNG
- iPhone OpenGL First Frame Black
- Show splash screen instead of snapshot
- How to know whether launch image has been shown when applicationWillEnterForeground or applicationDidBecomeActive is called?
- default.png does not work
- Launch image of my iphone application inverted on iPad
- Code for changing multiple .img files into .png, then into numpy array
- Why do I see double status bars when starting my app?
- iOS version specific Default.png?
- Why is iPhone 5 briefly Letterboxing and displaying Default.png in Cocos2d?
- Where is my background image coming from?
- IOS Default.png show every time when my app enter foreground from background
- iPhone returns to black screen after sleep interrupt during splash screen
- Xcode 4 - removing "Default.png"
- iPhone - Force localization of Default.png
- How to delay Default.png?
Related Questions in .ICO
- Setting a custom cursor (CSS) didn't work
- Convert multiple PNG icons into one .ICO icon
- tkinter python icons won't show up in window
- How to set a folder as system folder
- How should I use .ico files in a Winforms Application?
- What is the max possible size of an 32x32px .ico file?
- Visual Studio will not show my .ico for project icon
- Select Custom AutoHotKey Tray Icon from .ico file
- How to display .ico image file in IE
- my page containing several favicons not showing on internet explorer - .ico files not displaying
- I need to reduce size of image? Can somebody assist me?
- Using TclApp to wrap program, issue with bitmap in Tcl/Tk
- ICO maximum size
- File Type Icon not updating in Visual Studio
- trying to change default icon in tkinter Tk() at the top of the "window"
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
IE doesn't serve favicons which doesn't have the
type="image/x-icon"on it.So for favicons for IE, you should use this:
<link rel="icon" type="image/x-icon" href="favicon.ico" />For showing the icon as a
imgtag, the best solution I can think of is trying another format. If you are uploading the icons manually, then I would convert them with an image program.If you a system which allows users to upload icons, then I would use the GD or ImageMagick library to convert those.