remove Box around image with hyperlink

W

WebLynx

I would like to have a hyperlink from my image but the box created when I
create a hyperlink is unsightly. Is is possible to have an image hyperlink
without the box ?
 
K

Kathleen Anderson [MVP - FrontPage]

In Design View, right-click on the image and choose Picture Properties and
set the Border thickness to 0 (zero).

--

~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
web: http://www.spiderwebwoman.com/resources/
Please reply to the newsgroup for the benefit of others
 
M

Mike Mueller

set the border to 0:

<a href="destination.url">
<img src="image.url" style="height: 10px; width: 50px; BORDER: 0"
alt="image description" />
</a>
 
Top