Results 1 to 5 of 5

Thread: I Need Help Again !!

  1. #1
    Join Date
    Jan 2008
    Location
    Eastern Shore Of Maryland
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I Need Help Again !!

    I am trying to find out what I have to do to add a small word in color like New or Hot to make it beside a link on a web page to make it stand out. I see it on this home page {NEW} in yellow with black letters. On some pages it may be red letters.
    Thanks in advance
    Landscaper

  2. #2
    Join Date
    Jan 2007
    Posts
    629
    Thanks
    10
    Thanked 28 Times in 28 Posts

    Default

    I think those are simple jpeg images that are loaded and hyperlinked. You can make the image in something like windows paint.

    Code:
    <a href="./somewhere.html">
    <img src="./new.jpg"></img>
    </a>
    --Jas
    function GreatMinds(){ return "Think Like Jas"; }
    I'm gone for a while, but in the meantime: Try using my FTP script | Fight Bot Form Submissions

  3. #3
    Join Date
    Jan 2008
    Location
    Eastern Shore Of Maryland
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help Again

    Thank you very much.I will try it out.
    Landscaper

  4. #4
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    Quote Originally Posted by Jas View Post
    I think those are simple jpeg images that are loaded and hyperlinked. You can make the image in something like windows paint.

    Code:
    <a href="./somewhere.html">
    <img src="./new.jpg"></img>
    </a>
    There's no such thing as </img>

    Should only be:
    HTML Code:
    <a href="./somewhere.html"><img src="./new.jpg"></a>
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

  5. #5
    Join Date
    Jan 2007
    Posts
    629
    Thanks
    10
    Thanked 28 Times in 28 Posts

    Default

    Wooh! I don''t know what I was thinking (off day I guess)! Sorry, and thanks tech_support.
    --Jas
    function GreatMinds(){ return "Think Like Jas"; }
    I'm gone for a while, but in the meantime: Try using my FTP script | Fight Bot Form Submissions

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
  •