I recently upgraded to build 2448. After doing so I noticed the "Statistics" and "Settings" buttons associated with the GUI interface no longer aligned correctly on the Index Page. A review of the header.html code revealed an offending <br> on line 18. Removing the <br> corrected the alignment problem. The old code read as; <table CELLPADDING="3"> <tr ALIGN=CENTER> <th COLSPAN="2" BGCOLOR="#60B0B0"> <a href="http://www.networkupstools.org" target="new"> <IMG SRC="nut-banner.png"></a> <br> <<<<<<------------ Offending <br> </th> </tr> My revised code reads as; <table CELLPADDING="3"> <tr ALIGN=CENTER> <th COLSPAN="2" BGCOLOR="#60B0B0"> <a href="http://www.networkupstools.org" target="new"> <IMG SRC="nut-banner.png"></a> </th> </tr> You may wish to correct this for future releases. Bob Blackwell Pickering, Ontario www.afticarr.com Organ donation can save a life. Please sign your organ donor card.
On Thu, Apr 22, 2010 at 8:39 AM, Bob Blackwell <rc.blackwell at yahoo.ca> wrote:> I recently upgraded to build 2448. After doing so I noticed the "Statistics" > and "Settings" buttons associated with the GUI interface no longer aligned > correctly on the Index Page. A review of the header.html code revealed an > offending <br> on line 18. Removing the <br> corrected the alignment > problem.I'm guessing you are also using a newer web browser than the last time you viewed that page. (That file hasn't changed since SVN revision 94, which was in 2005.) That brings up a good point, though - the HTML is far from compliant with recent standards. If I rework it, does anyone have any strong feelings for or against HTML4 or XHTML? -- - Charles Lepple