For html code why does my font change color when I add a hyperlink to it?

I am trying to design my website. The only problem I am having is when I add a hyperlink to the text in a text box the font changes color.

Public Comments

  1. coz the hyperlink color is set already in the head of the page. what ever the fontcolor, the hyperlink will have the same color.. set the color after you set the hyperlink destination..
  2. Because the tags of vlink, link, and alink are already set. You can change them in your OWN html pages. Good luck!
  3. This is a setting that is in all browsers and HTML documents. It will be defined as the Hyperlink color. There is also a tag for after a Hyperlink has been clicked on as well. You can define this for the whole document, or you can add a style attribute per anchor tag (hyperlink). This link may help you if you are using standard html: http://www.codeave.com/html/code.asp?u_log=5027 CSS here: http://www.goldcoastwebdesigns.com/change-hyperlink-color.shtml Best of luck.
  4. If you want don't want it to be underlined or have no text decoration at all, use this CSS in the head tags: <style type="text/css"> a.link { text-decoration: none; } a.visited { text-decoration: none; } a.hover { text-decoration: none; } a { text-decoration: none } </style>
  5. All you have to do is put the font tags inside the hyper link, like this: <p><a href="http://slhelp.blogspot.com"> <font color="000000">Mannanana</font></a></p> that will make your links black.
  6. normally the font color does not change in that case. u should check your code to see where u have put the hyperlink color and the font color.it may be a logical error. if u could give us the code, we could help u better
Powered by Yahoo! Answers