Changeset 9


Ignore:
Timestamp:
Sep 14, 2018, 1:16:21 AM (6 years ago)
Author:
chronos
Message:
  • Modify: Reduce vertical space in runner page.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r8 r9  
    193193    $DbResult = $this->Database->query('SELECT * FROM Runner WHERE Id='.$RunnerId);
    194194    $DbRow = $DbResult->fetch_assoc();
    195     $Output .= '<h4 style="text-align: center;">Runner '.$DbRow['Name'].'</h4>';
     195    $Output .= '<div style="text-align: center;">Runner '.$DbRow['Name'].'</div>';
    196196
    197197
     
    199199
    200200    // Show detailed stats
    201     $Output .= '<div style="text-align: center">Detailed</div><br/>';
     201    $Output .= '<div style="text-align: center">Detailed</div>';
    202202    $DbResult = $this->Database->query('SELECT COUNT(*) FROM `RunnerStat` WHERE '.$Where);
    203203    $DbRow = $DbResult->fetch_row();
     
    251251    $PageList = GetPageList($DbRow[0]);
    252252
    253     $Output .= '<div style="text-align: center">Daily</div><br/>';
     253    $Output .= '<div style="text-align: center">Daily</div>';
    254254    $Output .= '<div id="list_content">';
    255255    $Output .= $PageList['Output'];
Note: See TracChangeset for help on using the changeset viewer.