Close

Results 1 to 12 of 12
  1. #1
    DF VIP Member shedsounds's Avatar
    Join Date
    Dec 2000
    Location
    Yorkshire
    Posts
    533
    Thanks
    0
    Thanked:        0
    Karma Level
    309

    Default Some basic image help needed

    and I mean basic but I never had to do this before so bear with me...

    Ive got some images, Ive put them one on a page at http://www.apcv58.dsl.pipex.com/index.htm
    and /page1.htm etc...

    What I need is to make these so they are not htm pages but are just the jpegs. Not usre if Im explaining this right, but if you think of an avatar and you right click properties you see www.whatever.co/image.jpg, ie. its not a page just the image. Does this make sense? Its late, im tired...lol

    I have uploaded the jpegs as well as the simple webpages but clearly I need to do somethign else?
    www.rickwitter.net
    Rick Witter and the Dukes

  2. #2
    DF Admin xdam's Avatar
    Join Date
    Oct 2000
    Location
    Stoke
    Posts
    1,481
    Thanks
    163
    Thanked:        183
    Karma Level
    368

    Default Re: Some basic image help needed

    You need to fix the path on the image first, it's pointing to your hard drive

    file:///C:/website/poohkey.jpg

    you can just put in your code (if i've understood what you are asking)... :nowords:

    HTML Code:
     <a href="poohkey.jpg" target="_blank"><img src="poohkey.jpg"></a>

  3. #3
    DF Probation itschris's Avatar
    Join Date
    Jan 2003
    Location
    Glasgow, Scotland
    Posts
    281
    Thanks
    0
    Thanked:        0
    Karma Level
    270

    Default Re: Some basic image help needed

    basically upload the JPG file like you have done the html file... and instead of targetting to http://www.apcv58.dsl.pipex.com/index.htm you would target to http://www.apcv58.dsl.pipex.com/imagename.jpg {or gif, bmp, png}.
    [COLOR=Blue]My previous car was an Ibiza 1.4 16v running at 96BHP![/COLOR]
    [IMG]http://img.photobucket.com/albums/v621/chr15b/ibizasmash_sig.jpg[/IMG]

  4. #4
    DF VIP Member shedsounds's Avatar
    Join Date
    Dec 2000
    Location
    Yorkshire
    Posts
    533
    Thanks
    0
    Thanked:        0
    Karma Level
    309

    Default Re: Some basic image help needed

    Quote Originally Posted by xdam
    You need to fix the path on the image first, it's pointing to your hard drive

    file:///C:/website/poohkey.jpg

    you can just put in your code (if i've understood what you are asking)... :nowords:

    HTML Code:
     <a href="poohkey.jpg" target="_blank"><img src="poohkey.jpg"></a>
    Thats what I have done now and it basically looks like the right idea (i.e. clicking the image would take you to http://www.apcv58.dsl.pipex.com/poohkey.jpg. Only problem is the image isnt displaying it isnt displaying the image, just redcrossing it. The image has been uploaded and is in the same folder etc..

    http://www.apcv58.dsl.pipex.com/index.htm

    I sure Its whats itschris is saying but i dont understand what he means. Many thanks xdam too
    www.rickwitter.net
    Rick Witter and the Dukes

  5. #5
    DF VIP Member ShadowMoses's Avatar
    Join Date
    Oct 2003
    Location
    Wales, UK
    Posts
    1,168
    Thanks
    0
    Thanked:        0
    Karma Level
    309

    Default Re: Some basic image help needed

    put in the link address and it says file not found, either you uploaded it wrong or into a directory...OR more likely, the filename?? Has the filename got any capital letters in it, if so you have to put them as the filename too!

    Thats the most common cause for me when using images!

    Moses

  6. #6
    DF VIP Member /dev/null's Avatar
    Join Date
    Feb 2004
    Location
    Behind You
    Posts
    2,952
    Thanks
    0
    Thanked:        0
    Karma Level
    451

    Default Re: Some basic image help needed

    Your problem is that you are linking to poohkey.jpg and not pookey.JPG - The case of the extension matters. The host most likely uses a unix file server.
    Last edited by /dev/null; 6th November 2004 at 04:04 PM.

  7. #7
    DF VIP Member ShadowMoses's Avatar
    Join Date
    Oct 2003
    Location
    Wales, UK
    Posts
    1,168
    Thanks
    0
    Thanked:        0
    Karma Level
    309

    Default Re: Some basic image help needed

    yeah thats it!!

    Unix servers are case sensitive init

    Moses

  8. #8
    DF Member Gerrit_de's Avatar
    Join Date
    Nov 2004
    Location
    Holland
    Posts
    40
    Thanks
    0
    Thanked:        0
    Karma Level
    240

    Default Re: Some basic image help needed

    true...cool poster dude...

    this will work...
    http://www.apcv58.dsl.pipex.com/poohkey.JPG

  9. #9
    DF VIP Member shedsounds's Avatar
    Join Date
    Dec 2000
    Location
    Yorkshire
    Posts
    533
    Thanks
    0
    Thanked:        0
    Karma Level
    309

    Default Re: Some basic image help needed

    Bloody hell, I never knew extensions could be case sensitive, ah well, its done the trick, thanks very much all for your help. Karma added to all.
    www.rickwitter.net
    Rick Witter and the Dukes

  10. #10
    DF VIP Member /dev/null's Avatar
    Join Date
    Feb 2004
    Location
    Behind You
    Posts
    2,952
    Thanks
    0
    Thanked:        0
    Karma Level
    451

    Default Re: Some basic image help needed

    They are only case sensitive when running a unix server, but nowadays most servers are unix because they are reliable and secure.

    It's good practice anyway to get into case sensitivity - imagine if you had a massive site on a M$ server and then migrated to a unix one - you'de have a lot of maintenance to do!

  11. #11
    DF Probation itschris's Avatar
    Join Date
    Jan 2003
    Location
    Glasgow, Scotland
    Posts
    281
    Thanks
    0
    Thanked:        0
    Karma Level
    270

    Default Re: Some basic image help needed

    Something I noticed when viewing your page...

    Because the image is a hyperlink it puts the blue border round it (this can be changed with CSS, but lets not get into that).

    If you wanted the border off you jus add this to the IMG tag.


    HTML Code:
    <img src="poohkey.JPG" border="0">

    Maybe you don't I dunno I jus thought I'd let you know
    [COLOR=Blue]My previous car was an Ibiza 1.4 16v running at 96BHP![/COLOR]
    [IMG]http://img.photobucket.com/albums/v621/chr15b/ibizasmash_sig.jpg[/IMG]

  12. #12
    DF VIP Member shedsounds's Avatar
    Join Date
    Dec 2000
    Location
    Yorkshire
    Posts
    533
    Thanks
    0
    Thanked:        0
    Karma Level
    309

    Default Re: Some basic image help needed

    I didnt but I do now, thanks
    www.rickwitter.net
    Rick Witter and the Dukes

Similar Threads

  1. needed opinions
    By krazi30173 in forum Site Critique
    Replies: 1
    Last Post: 20th September 2002, 03:34 PM
  2. Saturn info needed
    By Shiver in forum Old Skool Gaming & Retro
    Replies: 8
    Last Post: 16th September 2002, 12:01 PM
  3. visual basic 6 enterprise
    By spade2001 in forum Programming
    Replies: 21
    Last Post: 14th September 2002, 10:51 AM
  4. Advice needed! Xbox or Gamecube
    By Grooster in forum Microsoft Consoles
    Replies: 6
    Last Post: 5th September 2002, 01:05 PM
  5. Opinions needed for Originality and Concept
    By Scat in forum Site Critique
    Replies: 0
    Last Post: 28th August 2002, 10:33 AM

Social Networking Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •