views:

7

answers:

1

In Sharepoint, how can I link an image in a content editor web part to another URL link by clicking on it?

I pasted my link into the Content Link space but when I apply the change it turns my image into a - and I cannot click the link

+1  A: 

a content editor webpart is just raw html. so the way to wrap an image in a link is to use the a (anchor) tag like so.

<a href="DestinationURL"><img src="yourimagefile.jpg" /></a>
brian brinley