[snip]
In CSS file all links are black:
/* Part from CSS file  */
a:link{color:#000000; text-decoration: none;} /*unvisited link*/
a:visited{color:#000000; text-decoration: none;} /*visited link*/
a:hover {color:#000000; text-decoration: none;} /*mouse over link*/
a:active { color:#000000}
[/snip]

Actually the is a CSS question and how it affects differewnt browsers.
Your PHP code is OK. This is OT, but it has to do with the order of your
a: statements in the CSS code (an issue that first cropped up a couple
of years ago IIRC). I do not remember the order exactly, but I think
that 'visited' must be first and 'hover' second. You will probably have
to play around with it.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to