Results 1 to 3 of 3

Thread: Modify simple code

  1. #1
    Join Date
    Jan 2005
    Posts
    58
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Modify simple code

    This is a code for a link that when clicked will open up the users email client.

    <a href="MAILTO:email@yahoo.com?SUBJECT=Fanlist&BODY=Name or Nickname*:country*:city*:age:sex:e-mail:homepage:">click here to send</a>


    What I want is:

    Name or Nickname*:country*:city*:age:sex:e-mail:homepage: =>
    1) Those words happen to appear in a row.
    I want each word under the next. <br> did not work.

    2) click here to send - those words appear in Times-font.
    I would like another font - can I change this?

    THANKS FOR YOUR HELP

  2. #2
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Peppy
    This is a code for a link that when clicked will open up the users email client.
    Correction: it may open the user's e-mail client. There is no guarantee that it will happen. If you want to compose an e-mail, use a form mail script. Your host may provide one (many do) but if not, there are plenty of them around for free.

    Name or Nickname*:country*:city*:age:sex:e-mail:homepage: =>
    1) Those words happen to appear in a row.
    I want each word under the next. <br> did not work.
    Most form processors will list the name and value of each successful form control.

    2) click here to send - those words appear in Times-font.
    I would like another font - can I change this?
    Yes, use CSS. As you shouldn't mix font faces, it would be best (and easier) to set the font document-wide:

    Code:
    body {
      font-family: sans-serif;
    }
    You can add any number of font families, separated by commas. They'll be used first-to-last based on whether the font is available. If the font family name contains spaces, such as "Courier New", place it in double quotes. Finally, the last font should always be a generic type: serif, sans-serif, monospace, cursive, or fantasy.

    That said, as you should be using a form, the above isn't really applicable any more.

    Mike

  3. #3
    Join Date
    Aug 2005
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default outlook help

    OK seems to work now with this information about outlook express messages disappear and dbx reader

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
  •