|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#2 | |
|
Member (1 million bit!)
Join Date: Feb 2003
Location: NY
Posts: 1,160
|
Just put the tag at the beginning of the first link and at the end of the last link.
Just do: HTML Code:
<font color="blue"><a href="link 1"></a><a href="link 2"></a><a href="link 3"></a></font color>
__________________
![]() Last edited by mrmister1; 11-19-2004 at 07:56 AM. |
|
|
|
|
|
|
#3 |
|
Staff
Premium Member
Join Date: Jul 1999
Location: Arlington, TN
Posts: 5,538
|
The <font> tag is deprecated and shouldn't be used at all. You should use CSS (Stylesheets). You can use internal, external or inline style tags. Here is the inline.
In you links: <a style="color:red" href="#">Red Link</a> yields Red Link <a style="color:blue" href="#">Blue Link</a> yields Blue Link <a style="color:green" href="#">Green Link</a> yields Green Link You can also specify the color by #FF0000 = red and other variations.
__________________
Want to Make $$$$ with your Computer? No Risk! Simply press shift-4 four times in a row |
|
|
|
|
|
#4 |
|
Member (7 bit)
Join Date: Nov 2004
Posts: 109
|
Font Color
Thanks Mairving,
I need to have the same color for all links if that is possible without having the spcript fo every link. I use this on all of my pages but need different colors for each. Could you be so kind to check out: http://www.equipmentpolice.com/ice350.html Maybe you can tell me where my mistake is. Best regards, Jack |
|
|
|
|
|
#5 |
|
Staff
Premium Member
Join Date: Jul 1999
Location: Arlington, TN
Posts: 5,538
|
In the head section of your site add something like this:
<style> A { color:COLOR;} A:link { color:#COLOR} A:visited {color:#COLOR;} A:active {color:#COLOR;} A:hover {color:#COLOR;} </style> replacing COLOR with your color of choice. You don't have to specify all of these since they are inherited but it never hurts to do so. You can also control whether they are underlined or not. A good effect is to change color on mouseover (hover). |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|