[thelist] Link color, when border=1

aardvark roselli at earthlink.net
Thu May 31 02:34:49 CDT 2001


> From: Chris Anderson <chris at photokyo.com>
[...] 
> Anyway, I want to have a black border on the thumbnail, not the blue
> that I am using for the rest of the links on my page.
> 
> I tried to do some style tags and stuff to the image, but it always
> stays blue.  Any way to do this without having to make another
> table?

for what browsers?

to catch things like netscape, you'll need some fontage within the 
anchorage:

<a href="foo"><font color="#000000"><img ...></font></a>

if you want to ditch that and just use CSS, try classing your 
anchors:

<a href="foo" class="ImgLink"><img ...></a>

the advantage here is you can apply the psuedo-classes to get 
some hover effects in IE4+ and N6+ browsers...

you can also put the styles inline as well:

<a href="foo" style="color:#000000;"><img ...></a>

dig?





More information about the thelist mailing list