Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have this logo image in the top left of the page on http://universeapp.co
The image shows up in safari on my mac but it doesn't show up in google chrome or on the iPhone?
It was working earlier and now it doesn't.. What could be the problem?
Your http://universeapp.co/images/universe%20app%20icon.png image is a PSD with a PNG file extension. You need to re-save it as a PNG file, rather than a Photoshop document with the PNG extension.
The reason the image appears in Safari is Safari has the ability to render PSD files. Most browsers do not and PSD's are rather large, so re-saving as PNG is important.
The image is not available. re upload the image and try
see
http://universeapp.co/images/universe%20app%20icon.png
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I am doing a freelancing website and i am using css html js and php
The problem is when i refer to my font awesome css sheet in my local folders it opens great in google chrome
But when i open it in edge or firefox the icons of do not appear (facebook icon,instagram...etc)
this is the picture of my ref
I had the same issue and it's related to the cross-domain issue that Mozilla doesn't allow such requests.
Read more here: http://code-epicenter.com/font-awesome-is-not-showingworking-in-mozilla-firefox/
P.S: I don't have enough reputation points to make a comment, hence writing it in the answer. Thank you for not down-voting because of that.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I want to be able to use my pictures on my computer and put it into my html code .
I have done this but on my website it comes up as broken image.
How would I do it so that other people would be able to see the images on my website.
Thanks
First of you can't see your image without upload it.It's normal to see as a broken image.So you have to upload it.Filezilla will help you to upload it into your server.After you upload it change your local img path to server img path and it will fix your problem.No need to upload on the same folder but just upload it into your server
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 6 years ago.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Improve this question
I am very new to html and I am kind of still learning! However, I have coded for my html to show a picture on my webpage. The image I am trying to display on my website is in the same folder as my html and my stylesheet. But when I load up my website, it shows a black square with a white x in it using Microsoft Edge. When I open my webpage in Google Chrome it shows a little cartoon picture with a line through it in the place my image should be. Again my html wont show my picture on my webpage.
Here is the html code for my picture:
<img src="apollo13.jpg" alt="Apollo 13" />
Here is my file with everything in it:
My file with everything (html, css, image)
I am using Windows 10
Please Help!!
Thanks,
Tyler.904
Based on your screenshot, your PNG images have no extension, yet are recognized as PNGs, meaning you're hiding known extensions. So, that means the real file name of your image (which you refused to tell in the comments) is apollo13.jpg.jpg and the full html would be:
<img src="apollo13.jpg.jpg" alt="Apollo 13" />
Or simply rename the file to apollo13.jpg (drop one .jpg).
Original screenshot for reference (you have quite a few files with double extensions):
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have used png image in my application.
Actual size is : 300px X 300px
I am using it's 20% as input image button. it showing good in Mozilla and Chrome browser.
But in IE it is distort.
Please see the attachments:
Please let me know if there any other attributes are there to fix this issue.
Issue in IE browser, Look at the circle buttons:
Issue in Mozilla browser, Look at the circle buttons:
Erm simple, disable border for image?
input[type=image] {
border: none;
}
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have recently moved my website from the ROOT folder to a SUB folder. Since I have done this my "Awesome Font" is not displaying in my browsers.
The missed font is showing the errors:
My Header (on the left, missing currencies.
My Footer (copyright text not showing, resulting in the payment methods dropping bellow the footer).
My website can be found here: ----
You have a path problem, most likely.
You probably changed the structure of directories, if it used to work before this change.
Try loading Awesome-Font from CDN server and see if it works, if so you have to change your path to the font awesome directory.