Hi everyone,
I have the following code in an email newsletter template:
| <td width="100%" style="font-size: 18px; color: #353535; text-align: center; font-weight: normal; font-family: Helvetica, Arial, sans-serif; line-height: 24px;" ice:editable="line"><a href="#" target="_blank" style="text-decoration: none; color: #353535;"> Our work is <span style="color: #0081b7;">dedicated</span> to the prosperity of our clients </a></td> |
I've placed ice:editable="line" within the td element. This works well but I also need the link for the text within the td to be editable also so I tried the following:
| <td width="100%" style="font-size: 18px; color: #353535; text-align: center; font-weight: normal; font-family: Helvetica, Arial, sans-serif; line-height: 24px;" ice:editable="line"><a href="#" target="_blank" style="text-decoration: none; color: #353535;" ice:editable="link"> Our work is <span style="color: #0081b7;">dedicated</span> to the prosperity of our clients </a></td> |
I added ice:editable="link" within the a href but when I tested, this caused the line editable code to not work and neither did the link editable part work.
I thought maybe it was because I was nesting an editable region within another one. Could that be why it's not working? If yes, is there a workaround for this?
Appreciate any help.