diff options
author | Bill Marquette <billm@pfsense.org> | 2005-07-04 00:13:27 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-07-04 00:13:27 +0000 |
commit | d732f18698038b27df5a36f57285e79cc17a4314 (patch) | |
tree | cb769d278aea1be1d86ed41521dd2d4bf2f36c7a /usr/local/www/interfaces_vlan.php | |
parent | 201bf2eeff376557fe2fdb635737f9b2acc9a811 (diff) | |
download | pfsense-d732f18698038b27df5a36f57285e79cc17a4314.zip pfsense-d732f18698038b27df5a36f57285e79cc17a4314.tar.gz |
Fix bottom rounds
Diffstat (limited to 'usr/local/www/interfaces_vlan.php')
-rwxr-xr-x | usr/local/www/interfaces_vlan.php | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/usr/local/www/interfaces_vlan.php b/usr/local/www/interfaces_vlan.php index ca6eca1..4e11750 100755 --- a/usr/local/www/interfaces_vlan.php +++ b/usr/local/www/interfaces_vlan.php @@ -95,7 +95,6 @@ include("head.inc"); <p class="pgtitle"><?=$pgtitle?></p> <?php if ($input_errors) print_input_errors($input_errors); ?> <?php if (file_exists($d_sysrebootreqd_path)) print_info_box(get_std_save_message(0)); ?> -<div id="mainarea"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php @@ -106,8 +105,9 @@ include("head.inc"); ?> </td></tr> <tr> - <td class="tabcont"> -<table width="100%" border="0" cellpadding="0" cellspacing="0"> + <td> + <div id="mainarea"> + <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="20%" class="listhdrr">Interface</td> <td width="20%" class="listhdrr">VLAN tag</td> @@ -142,16 +142,10 @@ include("head.inc"); <td class="list"> </td> </tr> </table> - </td> + </div> + </td> </tr> </table> -</div> <?php include("fend.inc"); ?> - -<script type="text/javascript"> -NiftyCheck(); -Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); -</script> - </body> </html> |