Fix font for tours

This commit is contained in:
patrick 2025-02-22 03:11:11 +00:00
parent a69b77add5
commit bc555b8ecf

View File

@ -196,7 +196,7 @@ while ($r = $q->fetch(PDO::FETCH_OBJ)) {
echo happy(i18n('You have been assigned to a tour. Tour selection is disabled.'));
$t = $tours[$assigned_tour[$r->id]];
echo i18n('Your Tour') . ": <b>#{$t['num']}: " . i18n($t['name']) . '</b><br />';
echo '<span style="font-size: 0.8em;">' . i18n($t['description']) . '</span><br /><br />';
echo '<span style="font-size: 1em; font-style: italic;">' . i18n($t['description']) . '</span><br /><br />';
continue;
}
$print_submit = true;
@ -254,7 +254,7 @@ foreach ($tours as $id => $t) {
echo i18n('Grade') . ': <b>' . $t['grade_min'] . ' - ' . $t['grade_max'] . '</b>';
// echo i18n(", Capacity").": <b>".$t['capacity']."</b> ".i18n("students");
echo '<br />';
echo '<span style="font-size: 0.8em;">' . i18n($t['description']) . '</span><br /><br />';
echo '<span style="font-size: 1em; font-style: italic;">' . i18n($t['description']) . '</span><br /><br />';
}
/*