Categories | Question details Back To List | ||
Image and link Hi Is it possible to have an image with a link defined? example: <rows> <head> <column width="25" type="img,link" align="center" color="white">Edit</column> </head> <row id="1234"> <cell><![CDATA[/im/icon/edit.gif^http://www.iwebsolutions.co.uk]]></cell> </row> </rows> I have tried this but am getting an error with the type"img,link" in the column type definition. Thanks Andrew McCombe iWeb Solutions Answer posted by Support on Feb 27, 2008 08:40 actually cell type img already includes link functionality <rows> <head> <column width="25" type="img" align="center" color="white">Edit</column> </head> <row id="1234"> <cell>/im/icon/edit.gif^alttext^http://www.iwebsolutions.co.uk^_blank</cell> </row> </rows> |