Make BLB content use full viewport width
All checks were successful
Deploy to WebDAV (/BLB) / deploy (push) Successful in 47s

- MainHeader.js: render the main layout table at width=100% and let the
  mainRightTD content cell auto-fill remaining space (left nav stays 121px).
  Previously the content cell was fixed to docWidth (~480px), wasting most of
  a modern wide monitor.
- standard.css: neutralize html{zoom:130%} (force 100%) and add an
  #mainRightTD{width:auto!important} guard.
This commit is contained in:
hermes-explorigin 2026-09-05 03:23:41 +00:00
parent 4428ee03f4
commit c516a17e24
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
html { html {
zoom: 130% zoom: 100% !important;
} }
@ -598,3 +598,6 @@ div.floatyMover {
height:18px; height:18px;
} }
/* === Full-viewport override (added for modern monitors) === */
#mainRightTD { width:auto !important; }

View File

@ -152,7 +152,7 @@ if(noLeftNav[window.name]) {
} else { } else {
document.write( document.write(
'<div align="left">' + '<div align="left">' +
'<table border="0" cellpadding="0" cellspacing="0">' + '<table border="0" cellpadding="0" cellspacing="0" width="100%">' +
'<tr>' + '<tr>' +
'<td valign="top" align="left">' + '<td valign="top" align="left">' +
'<div style="width:121px;" class="menu_tablecell">' '<div style="width:121px;" class="menu_tablecell">'
@ -179,7 +179,7 @@ if(noLeftNav[window.name]) {
} }
document.write( document.write(
'<td valign="TOP" ID="mainRightTD" align="LEFT" width='+docWidth+'">'+ '<td valign="TOP" ID="mainRightTD" align="LEFT">'+
'<div class="notice" style="color:#ff0000">' + '<div class="notice" style="color:#ff0000">' +
' <a href="https://www.blb.org"></a>' + ' <a href="https://www.blb.org"></a>' +
'</div>' '</div>'