Welcome to TalkGraphics.com
Results 1 to 10 of 239

Hybrid View

  1. #1
    Join Date
    Nov 2000
    Location
    Surrey, UK
    Posts
    440

    Default Re: Show Us Your Website!

    Hi John:
    Is it possible to define something as a JPEG and give it a 'title='

    I have tried but can't seem to do it.

  2. #2

    Default Re: Show Us Your Website!

    Hi Sqeaky.

    Look in the Help file under HTML.

    There it's explained how to add ALT and TITLE attributes to images.

    (The help file calls them "Alt" and "Title" tags which is wrong, they are attributes applied to the <IMG tag)

  3. #3
    Join Date
    Aug 2004
    Location
    Ukraine
    Posts
    3,904

    Default Re: Show Us Your Website!

    Hi Sqeaky,
    of course you can!
    You just need to add two names to the object:
    JPEG
    title="My tilte!"
    John.

  4. #4
    Join Date
    Nov 2000
    Location
    Surrey, UK
    Posts
    440

    Default Re: Show Us Your Website!

    AH, you mean I can add different names to the same object. I was trying to add all the names separated by commas in one name tag.

    A couple of lines about this in the manual might help if there is anyone else as dim as me out there :-)

    What exactly does the IMG tab do as opposed to the Title and Alt tags?

  5. #5

    Default Re: Show Us Your Website!

    squeaky, alt and title are not tags.
    You don't need to worry about the (real) <IMG tag in Xtreme, it's done automatically when exporting, it's not something you need to add anywhere.

    But FYI, the image tag looks like this:

    <img src=picture.jpg>

    It's a tag because it starts with a 'lesser-than' symbol '<' and ends with a 'greater-than' symbol '>'.
    alt or title are 'attributes' which add things to the image properties. For example;

    <img src="picture.jpg" alt="picture of a rabbit">
    This will show the words 'Picture of a rabbit' on the page when the browser cannot show the actual image.

    <img src="picture.jpg" title="picture of a rabbit">
    This will show the words 'Picture of a rabbit' as a tooltip when you hover the mouse over the image on the page.

    <img src="picture.jpg" alt="picture of a rabbit" title="picture of a rabbit">
    This will show the words 'Picture of a rabbit' on the page when the browser cannot show the actual image AND show the words 'Picture of a rabbit' as a tooltip when you hover the mouse over the image on the page.
    Last edited by steve.ledger; 22 April 2008 at 06:02 PM. Reason: typos

  6. #6
    Join Date
    Nov 2000
    Location
    Surrey, UK
    Posts
    440

    Smile Re: Show Us Your Website!

    Thanks for that.
    I've only done Flash sites before and this HTML stuff is a bit alien to me.
    Too many words, not enough pictures!

 

 

Tags for this Thread

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
  •