This topic is locked

Can I change the Word Link into a Image Link

4/14/2007 8:32:45 AM
PHPRunner General questions
L
lawfour author

I want to change a word link into a image is this possible in PHPrunner. I could not find anything except word link default.

J
Jane 4/16/2007

Larry,
you can do it editing yout HTML template manually.

Proceed to the Visual Editor tab, turn on HTML editor, find your link:

<a href="...">your link</a>

and replace it with this one:

<a href="..."><img src="images/your_image.gif"></a>

.