Button

From SMTX Wiki
Jump to navigation Jump to search

If you want a button, that holds a link in a form, use an HTML field, and we wil build a table in there.

The HTML button can not be used, as you need javascript to make it work.

But a nice table, with a link in it, will do just fine :

In the HTML field, paste this code:


<table width="100" border="0" cellpadding="1" cellspacing="1" bordercolor="#33CCFF">
<tr>
<td bgcolor="#33CCFF"><div align="center"><strong><a href="http://www.test.com";><font face="arial" color="white" size="2">Click here</font></a></strong></div></td>
</tr>
</table>


or, if the link needs to open in a new browser window, add ' target="_blank"' in the <a href>-tag:

<table width="100" border="0" cellpadding="1" cellspacing="1" bordercolor="#33CCFF">
<tr>
<td bgcolor="#33CCFF"><div align="center"><strong><a href="http://www.test.com"; target="_blank"><font face="arial" color="white" size="2">Click here</font></a></strong></div></td>
</tr>
</table>