Boarder around Hyperlinked Poctures

U

un-Optimanc

Every time I hyperlink a picture it generates a blue boarder around it, how
do I disable this feature? My icons are very small and the boarder covers the
image!

Thanks
 
R

Ronx

1) Right click the image and choose Image Properties. Set the border to 0.

2) In HTML / Code view
<img border="0" src="blah">

3) For every image in the page place the following in the <head> section:

<style type="text/css">
img {border:none;}
</style>
 
Top