You can either just swap that round to look like this: <a href="URL"><font color="#0D0080"><u>TEXT</u></font></a> Code (markup): Note that this is bad practice now, and isn't valid. Or you can use css (the valid way to do it). <a href="URL" style="color:#0D0080; text-decoration:underline;">TEXT</a> Code (markup): Or if your wanting to change it so it has a hover colour different than the normal colour then you can do it this way: Placing this in the head section of you page: <style> a{color:#000000;} a:visited{color:#FFFFFF;} a:hover{color:#FF0000;} </style> Code (markup): Then placing this in your body: <a href="URL">TEXT</a> Code (markup): Although do note that this will make all the links on a page the same, if you want it just to affect one or a group of them just reply and I will explain that too Hope that helps