Welcome! Log In Create A New Profile

Advanced

Images not showing

Posted by Mac 
Announcements Last Post
Announcement SoC Curricula 09/30/2017 01:08PM
Announcement Demarcation or scoping of examinations and assessment 02/13/2017 07:59AM
Announcement School of Computing Short Learning Programmes 11/24/2014 08:37AM
Announcement Unisa contact information 07/28/2011 01:28PM
avatar
Mac
Images not showing
February 18, 2013 07:29AM
http://osprey.unisa.ac.za/phorum/read.php?406,99302

Many reasons, read through this topic from way back. Ignore references to specific exercises etc which is not done any more.
Re: Images not showing
March 13, 2013 10:04PM
I finally know and understand what I am doing.
Only My image is there but its invisible in a block.When I right click and select "show picture", theres no change.

Is this a setting on my internet or am I doing something wrong?
avatar
Mac
Re: Images not showing
March 14, 2013 07:36AM
If it is invisible in a block, then it is not "there" - many reasons for this, you will have to work through the link provided above.
avatar Re: Images not showing
March 14, 2013 07:19PM
I have noticed this a few times and this might be the problem in your case as well:

Our brain reads the src as "screen" and when we type, we type scr and not src?

Hope this clarifies?

Regards,

Mano
Re: Images not showing
March 15, 2013 07:25PM
Thanks but its not that.
If I open the file I created in my browser, the image appears perfectly.
But when I upload onto Freewebhosting website, just a block shows.
I also tried uploading onto images folder, but that doesn't work eithersad smiley
Re: Images not showing
March 15, 2013 08:17PM
Hi guys,
I figured out what I was doing wrong.
I was trying to upload the file from my hard drive instead of images folders on freewebhosting. Can someone please help me with the code to use,
I have tried ,<img src=
"http://www.freewebhostingarea.com\images\faith.JPG" width="180" height="180">.
Please help me. Thank you!
avatar Re: Images not showing
March 15, 2013 09:24PM
Try <img src="images/faith.JPG" width="180" height="180">
Also make sure the image has been uploaded to the freewebhosting images folder smiling smiley
Re: Images not showing
March 16, 2013 02:14PM
Thanks so much!!!
That was so simple and it worked!!!
I am finally sorted. Thanks againsmiling smiley
avatar Re: Images not showing
March 16, 2013 02:29PM
It's a pleasure smiling smiley
Glad I could help grinning smiley

(I like to follow the "Keep it simple" rule tongue sticking out smiley )
Re: Images not showing
March 17, 2013 07:38PM
Thanks Barry!
You're a lifesaver!!
Such a simple change,made all the frustration go awaycool smiley
Regards
Zelda
Re: Images not showing
March 18, 2013 09:47AM
Re: Images not showing
March 26, 2013 12:25PM
whats ive learnt is that you need to put the full property or directory for the image to show.if you do that, whethere its an image that is local or one from anothere website, if you put the full details of it, then it will show on the index.html.

but if you just say graphics/titlebar.gif, it sometimes doesnt open the image.
instead say:c://html /lesson 1/graphics/titlebar.gif.this way the image will definately show.

or if the image is from a website, put the full directory for it, and you shouldnt have a problem.
Re: Images not showing
May 18, 2013 08:11PM
Hello Mac,
All my images disappeared on my web pages when I put them in the images folder, What should I do please?
Re: Images not showing
May 18, 2013 08:15PM
Hi Elizabeth,

Stupid question, but did you update your img tag to include the directory when referencing your picture?
Re: Images not showing
May 20, 2013 09:13AM
Hi Elizabeth,

Just check your picture ref to be similar like:

<img src="images/name.jpg" width="260" height="100" alt="logo">

Warren
Re: Images not showing
May 21, 2013 12:31PM
Thanks guys!
Re: Images not showing
May 21, 2013 12:39PM
Hello Poovandran,
Whatever, thanks anyway.
Re: Images not showing
May 21, 2013 10:05PM
If what ever means you have not got it right yet ?

Check if your image is in the correct location and make sure it is named correctly(case sensitive). { e.g. mypic.jpg ; yourpic.bmp}

1.If you saved the image in the same folder as your index-page(index.html) yout code should read:

Language: HTML
<!--- example-->   <img src="mypic.jpg width=50 height=50>   <!--or-->   <img src="yourpic.bmp width=50 height=50>

2.If you saved it in the image folder your code should read:

Language: HTML
<!--- example-->   <img src="images/mypic.jpg width=50 height=50>   <!--or-->   <img src="images/yourpic.bmp width=50 height=50>

3.If you saved the image in a folder (e.g. images) and your index-page in a different folder (e.g. webpages) your code should read:

Language: HTML
<!--- example-->   <img src="../images/mypic.jpg width=50 height=50>   <!--or-->   <img src="../images/yourpic.bmp width=50 height=50>

I hope I'm right if not please help me. hot smiley
avatar Re: Images not showing
May 27, 2013 04:27PM
Language: HTML
<img src="../images/mypic.jpg"width=50 height=50>

It looks correct - just remember to close your " before the width...

Regards,

M
Sorry, only registered users may post in this forum.

Click here to login