linking a photo

lavine

New Member
I have a jpg that I would like to be a link. I cant seem to figure out how to connect a hyperlink to my image. there doesnt seem to be any options for this. I can add hyperlinks to text but not to jpgs.

any suggestions?
thanks
 

lavine

New Member
example

Hi [Firstname],

<<www.michaellavine.com>>

<img src=www.michaellavine.com/miley3.jpg>

<a href=<www.michaellavine.com>{File:"miley3.jpg"}</a>

<img src="http://www.michaellavine.com/miley3.jpg" alt="miley3.jpg" width="742" height="511" border="0">

this is in styled text. none of them images will hyperlink. in the email, the HREF image gets a hand clicker icon but wont go. i am sure there is a simple way out of this.
 

lavine

New Member
still not working

<a href=<http://www.michaellavine.com>{File:"miley3.jpg"}</a>

<a href=<"http://www.michaellavine.com">{File:"miley3.jpg"}</a>

<a href=<"www.michaellavine.com">{File:"miley3.jpg"}</a>

<a href=<www.michaellavine.com>{File:"miley3.jpg"}</a>

none of these four lines are working. they all put words above the photo. none of the photos carry an active link. the first two names that are above the photos are active but that is not what I am looking for.

what am I doing wrong?
 

stanbusk

Administrator
Staff member
All your lines are wrong. The format is:

<a href="LINK_URL_HERE">{File:"PICTURE_NAME_HERE"}</a>

Note that there is no '<' after 'href='. If you replace the sample strings with your stuff you get:

<a href="http://www.michaellavine.com">{File:"miley3.jpgE"}</a>
 

lavine

New Member
thanks

your line does not work. all i get is text.


this is the line I ended up using and it worked great. so all's well that ends well.


<a href="http://www.michaellavine.com"><img src="http://www.michaellavine.com/mileyTruck.jpg"</a>


best
michael
 
Top