PDA

View Full Version : using a css...


smartie_on_computer
12-05-2006, 12:17 AM
Hi every one.

I have used a css file to make change the colour of links, I have also used css to change the colour of tables but...
how can I change the colour of the link inside the table?

a:link {color: #333333;
text-decoration: underline;}

a:hover {
text-decoration: underline;}

a:visited {color: #333333;}

td {
background-color: #4c4c4c;
color: #a6a098;}
but the link colours han't changed in the table :confused:

Please help
Roman

kennard
12-05-2006, 12:28 AM
td a:link {
..
}
td a:hover {
etc
}

smartie_on_computer
12-05-2006, 03:41 AM
thank you so much!