Billie Jean
04-24-2003, 03:43 PM
How do I change the color of a link, and how do I make a list of links because when I do it, it all just goes right next to each other! I am new at HTML and I have no idea what I'm doing! Please help me!
|
View Full Version : Links! Billie Jean 04-24-2003, 03:43 PM How do I change the color of a link, and how do I make a list of links because when I do it, it all just goes right next to each other! I am new at HTML and I have no idea what I'm doing! Please help me! MaGiCSuN 04-24-2003, 03:48 PM put <br> after each link will make them each go down a bit use <a href="link.html"><font color="COLORHERE">linknamehere</font></a> for the changing color part Love, Mirna Shaneo 04-24-2003, 04:04 PM Originally posted by MaGiCSuN use <a href="link.html"><font color="COLORHERE">linknamehere</font></a>That doesn't work.. For me anyway :rolleyes: The way i quite often change the color of my links is by adding the following into my <body> tag.. You can also change the color of them using CSS but it's slightly more complicated esp. for a begginer. <body TEXT="COLOR" LINK="COLOC" VLINK="COLOC" ALINK="COLOR"> LINK = Unvisted Link VLINK = Visited Link ALINK = Active Link (when you click on it) and as MaGiCSuN said, use <BR> after </A> to put the next link on another line instead of next too the other one.. MaGiCSuN 04-24-2003, 04:11 PM it does work for me :) (the font tag) don't put it in front of the<a> but inside the <a></a> tag Billie Jean 04-24-2003, 04:26 PM Thank you all so much!!! I appreciate it!:) Shaneo 04-24-2003, 04:39 PM I stand corrected.. I didn't think it would work MaGiCSuN, cause i tryed that way in the past but i guess i had them on the outside.. Ohh i learnt something new today :D But i still prefer my way :lol: MaGiCSuN 04-24-2003, 05:05 PM I know, i also don't use this code either, because that would be so much trouble changing them for every layout :lol: |