Background image not loading on web [closed] - html

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 2 years ago.
Improve this question
I have a website where it doesn't load the background images; however, it does load when I run it on my local host. Its only when I upload it to the web where it doesn't load. Not sure where the problem might be.

The problem is almost 100% in your image path.
I can't really help you untill I see the code, but one thing you can try is to add / in front of the folder and file names.
For example, if your image path on localhost is images/myImage.jpg, try to replace it with /images/myImage.jpg and see if it changes !

Related

Images are not showing [closed]

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 5 years ago.
Improve this question
I'm using this template, and when I upload it to my domain just to test it, the images are not showing, as you can see it here. The website should look like the demo.
You can download the template to your self, I would have liked to make a pastebin for you guys, but I don't have 10 reputation.
So what you guys think is the problem?
While it is the best to correct url("../images/banner.jpg") of #banner, if you still only want the background image, put background-image: url("http://templated.co/items/demos/ion/images/banner.jpg");

How to use images on my website from my computer [closed]

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

Why wont my website show up? [closed]

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
I have create my website and have a domain but when I type the domain name into the browser I get some weird page. I am using 000webhosting and just uploaded the files and they said they were good. I am not sure what is the problem but here is the link
hudsonreamer.com
Hopefully I can get some help
Thanks a lot for the help
Check your DNS/Nameserver records to link files to domain.
Not really covered here however you may want to watch a youtube tutorial on setting up a hosted website.

"Awesome Font" Not Displaying [closed]

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.

Why does the HTML site flash when clicking the 'Home' button on my website? [closed]

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.