If you would like an image added to a text (editor) to open a link you will need to add some HTML code to the image tag to make sure that clicking on the image doesn't just open a larger view of the image (the current default for an image).
You can fix this by adding the "nowrap="true"; to the <img> tag.
So, briefly:
Import your image to the text editor.
Open the HTML editor by clicking on this (
) icon in the toolbar.

Add "nowrap="true"; to the <img> tag.
The result should look something like this.
Example: <img nowrap="true" src="http://yourwebsite.com/theimage.png" border="0" width="100%" />
This way the link from the surround <a> element will be opened instead of opening the image in a new view.
Comments
0 comments
Please sign in to leave a comment.