Hello
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}
On the page also all links are black (visited or unvisited). In the PHP code
I print the image and link to medium image:
$thumb = "<a href=\"showPictures.php?image_id=$id&image_size=$medium\"><img src=$image_small border=1></a>";
In the Mozilla the Image frame/border is black but on IE it is (blue unvisit and red visit).
When I try to print just image
echo "<img src=$image_small border=1>";
The image frame is black on IE and Mozilla. Any ideas why the image frame is blue or red when I print
$thumb = "<a href=\"showPictures.php?image_id=$id&image_size=$medium\"><img src=$image_small border=1></a>";
Thanks