diff options
author | Bill Marquette <billm@pfsense.org> | 2005-04-04 01:23:28 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-04-04 01:23:28 +0000 |
commit | 2d4a7bb177ac0fdcda11dc1878afd5f0b5e7be1c (patch) | |
tree | 76cce26f02737065e2acb463563d4de6b4d1dd8b | |
parent | 61aa1eb764e8f8596f3088062e7d2f243297da65 (diff) | |
download | pfsense-2d4a7bb177ac0fdcda11dc1878afd5f0b5e7be1c.zip pfsense-2d4a7bb177ac0fdcda11dc1878afd5f0b5e7be1c.tar.gz |
icon placement
-rwxr-xr-x | usr/local/www/services_wol.php | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/usr/local/www/services_wol.php b/usr/local/www/services_wol.php index 8f5a9fb..3d29f31 100755 --- a/usr/local/www/services_wol.php +++ b/usr/local/www/services_wol.php @@ -148,14 +148,26 @@ Click the MAC address to wake up a computer. <br> <td class="listbg"> <font color="#FFFFFF"><?=htmlspecialchars($wolent['descr']);?> </td> - <td valign="middle" nowrap class="list"> <a href="services_wol_edit.php?id=<?=$i;?>"><img src="e.gif" width="17" height="17" border="0"></a> - <a href="services_wol.php?act=del&id=<?=$i;?>" onclick="return confirm('Do you really want to delete this entry?')"><img src="x.gif" width="17" height="17" border="0"></a></td> - </tr> - <?php $i++; endforeach; ?> + <td valign="middle" nowrap class="list"> + <table border="0" cellspacing="0" cellpadding="1"> + <tr> + <td valign="middle"><a href="services_wol_edit.php?id=<?=$i;?>"><img src="e.gif" width="17" height="17" border="0"></a></td> + <td valign="middle"><a href="services_wol.php?act=del&id=<?=$i;?>" onclick="return confirm('Do you really want to delete this entry?')"><img src="x.gif" width="17" height="17" border="0"></a></td> + </tr> + </table> + </td> + </tr> + <?php $i++; endforeach; ?> <tr> <td class="list" colspan="3"></td> - <td class="list"> <a href="services_wol_edit.php"><img src="plus.gif" width="17" height="17" border="0"></a></td> - </tr> + <td class="list"> + <table border="0" cellspacing="0" cellpadding="1"> + <tr> + <td valign="middle"><a href="services_wol_edit.php"><img src="plus.gif" width="17" height="17" border="0"></a></td> + </tr> + </table> + </td> + </tr> </table> </form> <?php include("fend.inc"); ?> |