diff options
author | Stef Walter <stef@memberwebs.com> | 2008-06-13 22:03:54 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2008-06-13 22:03:54 +0000 |
commit | 4b5ae889e778f05a227e869de9cf12636a4d1e71 (patch) | |
tree | 07671f286165f718a80df9d4ddb1ef774b276110 /www/ajax/index.html | |
parent | f8912ab58a52ecbfca4a53e98be8be83e45b17c1 (diff) |
Put all headers on the side in a list
Diffstat (limited to 'www/ajax/index.html')
-rw-r--r-- | www/ajax/index.html | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/www/ajax/index.html b/www/ajax/index.html index d08d5de..9fc987e 100644 --- a/www/ajax/index.html +++ b/www/ajax/index.html @@ -5,7 +5,7 @@ <script language="javascript"> // Specify settings here - var ENDPOINT = "/rrdui-back/"; + var ENDPOINT = "/rrduiback/"; // The background and foregrond colors of the graph var GRAPH_COLOR_BACK = ":252424"; @@ -25,22 +25,18 @@ </head> <body> <table id="main-table" cellspacing="0" cellpadding="0"> - <tr id="top-row"><td> - - <table border="0" width="100%"> - <tr><td id="headers" width="60%"> - <a class="header" id="header-template">Text</a> - </td> - <td align="right" id="logo"> - - <!-- CUSTOMIZE: Add your logo or title here --> - Network Statistics - - </td></tr> - </table> - - </td></tr> - <tr id="main-row"><td colspan="2" id="main-cell"> + <tr id="main-row"> + <td id="left-column"> + + <div id="logo"> + <!-- CUSTOMIZE: Add your logo or title here --> + Network Stats + </div> + <div id="headers"> + <a id="header-template" class="header">Text</a> + </div> + </td> + <td colspan="2" id="main-cell"> <iframe id="main-frame" src="frame.html" border="0" frameborder="0"></iframe> </td></tr> |