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):
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 7 years ago.
Improve this question
A while ago I created www.readourlips.org and it looked great on phone and computer. But now, the index.html page is narrow when viewed on an iPhone (at least mine) because the body color is visible (see photo)
Does anyone know why this would suddenly change? It's not essential but the site doesn't look great anymore on a phone (only home page though)
Thank you all,
website is http://readourlips.org
David
The map at the bottom of the homepage is pushing the website to the right side, make the map have a width=100% and this will fix it
Take out the width attribute on the iframe tag, and put the width=100% as inline css
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.
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
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
When I click the 'Home' button on my site (beta.tradeacademy.org/dashboard), it shows the links and search box without the css for a split second - as shown in the attached image. Can anyone explain why this happens?
Thanks in advance.
That's called FOUC.
Your CSS files are being fetched much later. Please refer the waterfall.
Try to fetch the CSS in the html head.
The CSS file may not have been loaded prior to the HTML, and therefore not rendered.
Changing the load order would mitigate this issue.
See css loads late, so html looks weird for a second for possible solutions to this.
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 3 years ago.
Improve this question
we are building a template for our eBay listings.
eBay allows users to upload a description as HTML code and allows that code to link your external CSS files.
eBay displays the user's HTML code in an iframe, it looks like eBay calculates the height of your page on load and then and resizes the iframe according to that height.
Here is a link to one of our test listings in eBay's sandbox environment:
http://cgi.sandbox.ebay.com/ws/eBayISAPI.dll?ViewItem&item=110097353751&ssPageName=ADME:L:LCA:US:1123#ht_692wt_1136
In Chrome / Firefox there's a second scroll bar next to the listing.
In IE, the listings just covers eBay's footer which is even worse
I solved this issue once using CSS and i can't remember how.
I would really appreciate any help.
Here is our CSS code:
http://pastebin.com/aj4bffG9
Just remove this line from the #StartDescription rule in your CSS file:
height: 650px;
With this change, it works fine for me in Chrome/Firefox/Opera.