Boarder around Hyperlinked Poctures

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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>
 
Back
Top