Log in

View Full Version : I Need Help Again !!



landscaper
01-06-2008, 07:44 PM
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

Jas
01-06-2008, 07:53 PM
I think those are simple jpeg images that are loaded and hyperlinked. You can make the image in something like windows paint.



<a href="./somewhere.html">
<img src="./new.jpg"></img>
</a>

landscaper
01-07-2008, 02:07 AM
Thank you very much.I will try it out.
Landscaper

tech_support
01-07-2008, 02:12 AM
I think those are simple jpeg images that are loaded and hyperlinked. You can make the image in something like windows paint.



<a href="./somewhere.html">
<img src="./new.jpg"></img>
</a>

There's no such thing as </img>

Should only be:

<a href="./somewhere.html"><img src="./new.jpg"></a>

Jas
01-09-2008, 02:34 AM
Wooh! I don''t know what I was thinking (off day I guess)! Sorry, and thanks tech_support.