Page 1 of 1

image on top of root gallery

PostPosted: Mon Oct 13, 2008 3:08 pm
by max_privette
hi to all !
i am trying to put an image at the top of my root gallery with no sucsses
this is the code i put in the descreption area

<center><img src="http://www.pbase.com/max_privette/image/104490149/medium.jpg " border="0"</center>

what i am ding wrong ???

thanks ...

Re: image on top of root gallery

PostPosted: Mon Oct 13, 2008 4:00 pm
by djwixx
You haven't closed your img src tag using >

Re: image on top of root gallery

PostPosted: Mon Oct 13, 2008 4:22 pm
by max_privette
what you mean ?
i didnt understand ...

:(

Re: image on top of root gallery

PostPosted: Mon Oct 13, 2008 5:09 pm
by djwixx
<img src="http://www.pbase.com/max_privette/image/104490149/medium.jpg">

Re: image on top of root gallery

PostPosted: Mon Oct 13, 2008 5:31 pm
by max_privette
it dosen't work ...
:(

Re: image on top of root gallery

PostPosted: Mon Oct 13, 2008 10:55 pm
by halesr
It appears that the link you are using is not working. So, you might try there. When I use it, I get MISSION IMAGE FILE.

Here is what you entered
Code: Select all
<center><img src="http://www.pbase.com/max_privette/image/104490149/medium.jpg " border="0"</center>


You opened the
Code: Select all
<img
tag, but you did not close it with an ending symbol
Code: Select all
>


See if this works

Code: Select all
<center><img src="http://www.pbase.com/max_privette/image/104490149/medium.jpg" border="0"></center>


But you also need to test the link to the image as it does not seem to be correct.

It also looks like there might be a space between your .jpg and the close quotation mark. Fix that too.

Rene

Re: image on top of root gallery

PostPosted: Tue Oct 14, 2008 6:16 am
by max_privette
THX A LOT FOR BOTH OF YOU !!!