Tech Support Guy banner
Status
Not open for further replies.

Cannot get pictures onto my new website

1K views 7 replies 2 participants last post by  colinsp 
#1 ·
Hello, I have just this moment joined. I am a novice and am using Notepad ++ and Filezilla to upload my html website (Windows 10 on my Asus laptop) but,
No photos will show, I just get a tiny pale blue square with a diagonal line.
I have come across a text stating, "Some pictures have been blocked to prevent the sender from identifying your computer. Open this item to view the pictures".
Would that be something to do with it? I am getting desperate and so want to enjoy learning and doing this.
Regards
 
#3 ·
Thank youfor replying Colinsp, I think that this is what you mean, hope I am right.
<!DOCTYPE html>

...





blah blah blah



blah blah blah
p>
blah blah blah

blah blah blah

Daleham Gardens

>

balh blah blah


We will be back soon,

Your help much appreciated
 
#5 ·
This is your problem

Code:
"c:/users/alan/Desktop/allfieldwebsite/Images/allfieldlogo.gif
The image url is to your local hard disk C drive not to the webserver.

You need to change it to probably

Images/allfieldlogo.gif

You are better off using all lower case for paths so images would be better than images. All your images should be stored in this folder on your webserver. Also don't forget to balance your quotation marks.
 
#6 ·
Thank you Colin, referring to my own hard drive seems obvious (now that you told me) but I can still not get my pictures on after your advice .Should my images have the extension on the image name and should the index file say html or htm?

have a feeling that I am doing something very obvious that is wrong.

Thank you for your time.
Alan
 
#7 ·
Your html file should be located in the root html folder of your website probably public_html

Put your images in public_html/images

Then change the two lines in your file to

Code:
<p><img src="images/allfieldlogo.gif " alt="logo1" height="200" width="150"></p>
<p><img src="images/ombudlogo.jpg" alt="logo2" height="200" width="150"></p>
You have missing quotes and a missing p tag in your original code.
 
Status
Not open for further replies.
You have insufficient privileges to reply here.
Top