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>";
I want to make the image fram "black";
Thanks


_________________________________________________________________
FREE pop-up blocking with the new MSN Toolbar – get it now! http://clk.atdmt.com/AVE/go/onm00200415ave/direct/01/


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



Reply via email to