View Full Version : image links


Miette
07-10-2003, 08:52 AM
mmm, I don't really know if this is the right forum, as I'm not sure if I should solve my problem with CSS.
In my CSS I changed the link features, to be as I want to, but I have some images, that are links and they have that ugly blue border around them. Is there anything I could place in my CSS code to change that? Actually I want them to have a black border. Can anybody help me?
Thanks ;)

stargrl329
07-10-2003, 11:31 AM
Put this in your head tag:

<style type="text/css">
a{ color:black }
</style>

That should take care of the problem. If it doesn't, you can put this code (change the 1 to a larger number if you want a larger border):
<a href="YOUR URL"><img src="YOUR IMAGE" style="border:1px solid black"></a>

Miette
07-10-2003, 01:13 PM
Thank you, it worked :D

stargrl329
07-10-2003, 02:47 PM
you're very welcome ^_^