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("
"); puts(""); puts( // TODO: Replace nested tables with CSS (difficulty is that tables are closed elsewhere) "
\n\n" " \n" "
\n" "
\n"); -puts("
"); +puts("
"); } void webNewSectionHeaderEnd() /* Properly close header of collapsible section on web page */ { puts("
\n" " " "\n" "
 \n\n"); } void webNewSection(char* format, ...) /* create a new section on the web page */ { va_list args;