Page 1 of 1

How to add a link an image for newsletter purposes

Posted: Fri Feb 26, 2016 7:00 pm
by Caradiaz
Hello,

I have recently upgraded from OC 1.5.6 to OC 2.0.1.1. I'm trying to draft a newsletter in the 'Mail' admin page and have found that when I upload an image, I can no longer add either 'alt text' to it or a link to a webpage. When right-clicking on the image, it doesn't seem to be editable in any way, unlike in the older OC version.

Any help would be most appreciated.

Many thanks.

Re: How to add a link an image for newsletter purposes

Posted: Sat Feb 27, 2016 8:09 am
by WayneOB
I have also noticed a few bugs with url linking etc..

For a quick fix you could try adding via code option;

Code: Select all

<a href="mylink.htm"><img src="yourimage.jpg" width="400" height="100" title="Title" border="0" alt="ALT Text here"></a> 

Re: How to add a link an image for newsletter purposes

Posted: Tue Mar 01, 2016 8:12 pm
by Caradiaz
WayneOB wrote:I have also noticed a few bugs with url linking etc..

For a quick fix you could try adding via code option;

Code: Select all

<a href="mylink.htm"><img src="yourimage.jpg" width="400" height="100" title="Title" border="0" alt="ALT Text here"></a> 

Thank you very much for this, Wayne. Much appreciated.