e0323ab9105d1ab46644efbb1e15cd92c6d8c043
hiram
  Thu Sep 14 11:03:21 2017 -0700
use both classes in the open div refs #20094

diff --git src/hg/lib/web.c src/hg/lib/web.c
index 7b31f41..b182e6b 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -377,31 +377,31 @@
 
 void webNewSectionHeaderStart()
 /* Start the header for a new section on the web page.
  * May be used to maintain table layout without a proper section header */
 {
 webEndSection();
 puts("<div>");
 puts("<!-- +++++++++++++++++++++ START NEW SECTION +++++++++++++++++++ -->");
 puts(  // TODO: Replace nested tables with CSS (difficulty is that tables are closed elsewhere)
     "<BR>\n\n"
     "   <!--outer table is for border purposes-->\n"
     "   <TABLE WIDTH='100%' BGCOLOR='#" HG_COL_BORDER
         "' BORDER='0' CELLSPACING='0' CELLPADDING='1'><TR><TD>\n"
     "    <TABLE BGCOLOR='#" HG_COL_INSIDE
          "' WIDTH='100%'  BORDER='0' CELLSPACING='0' CELLPADDING='0'><TR><TD>\n");
-puts("<div class='subheadingBar'>");
+puts("<div class='subheadingBar windowSize'>");
 }
 
 void webNewSectionHeaderEnd()
 /* Properly close header of collapsible section on web page */
 {
 puts("     </div>\n"
      "     <TABLE BGCOLOR='#" HG_COL_INSIDE "' WIDTH='100%' CELLPADDING=0>"
           "<TR><TH HEIGHT=10></TH></TR>\n"
      "     <TR><TD WIDTH=10>&nbsp;</TD><TD>\n\n");
 }
 
 void webNewSection(char* format, ...)
 /* create a new section on the web page */
 {
 va_list args;