image with inserted url

bdd

New Member
Hello - was wondering why if you insert a url to an image the url is not activated until the image is clicked and goes blue and then the mouse clicks off the image while if you insert a url into text it is activated immediately on clicking Thanks
 

stanbusk

Administrator
Staff member
Are you talking about a picture inside styled text?

You can embed online pictures into Styled text with the following code:
Code:
<img src="PICTURE_URL_HERE">
Example:
Code:
<img src="http://www.maxprog.com/pictures/box_eMailVerifier.gif">
or in case you want also a link to a page:
Code:
<a href="URL_HERE"><img src="PICTURE_URL_HERE" border="0"></a>
Example:
Code:
<a href="http://www.maxprog.com"><img src="http://www.maxprog.com/pictures/box_iCash_v2.jpg" border="0"></a>
 
Top