Click to See Complete Forum and Search --> : HTML Link question. PLEASE HELP!
bourwa
07-10-2003, 07:46 PM
Alrighty. I know I used to do it, but I can't remember the tag anymore. On a page with more than multiple links, I want ONLY 1 to not be blue or underlined. Like a secret link on the page. How do I do that?! Please help!!! Thanks in advance.
bourwa
07-10-2003, 07:51 PM
Man ... right after I posted I found in in some source code on my friends page <a href="" style="color:#000;text-decoration:none"> Thank to any that were thinking of helping. =)
<a href="yourlink.htm" style="color: black; text-decoration:none;">yourlink</a>
lol...yep, that was it... :D
xataku_nakusute
07-10-2003, 07:56 PM
first....in CSS:
in <HEAD> section type
<style type="text/css">
a.classnameofyourchoice
{
color: #rgb value of your desired color;
text-decoration: choose: none|underline|overline| or any combination;
}
</style>
or, in HTML:
in the <BODY> section type
<a href="url of your link" style="color:#rgb color of your choice; text-decoration: choose from the ones above;">your url text</a>
some advice:
it most cases, the CSS version is more successful and is esier to edit after first use mainly becuz the CSS form is more open and organized
i hope that helps
XaTaKu_NaKuSuTe
XaTaKu.Tk (http://www.xataku.tk)