-<center>
<form id="theform" method="post" action="editsection.php">
-<table cellpadding="5">
+<table summary="Summary of week" cellpadding="5" class="boxaligncenter">
<tr valign="top">
<td align="right"><p><b><?php print_string("summary") ?>:</b></p>
<br />
- <font size="1">
+
<?php helpbutton("summaries", get_string("helpsummaries"), "moodle", true, true);
echo "<br />";
if ($usehtmleditor) {
}
?>
<br />
- </font>
+
</td>
<td>
<?php print_textarea($usehtmleditor, 25, 60, 660, 200, "summary", $form->summary); ?>
</td>
</tr>
</table>
+<div>
<input type="hidden" name="id" value="<?php echo $form->id ?>" />
<input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" />
<input type="submit" value="<?php print_string("savechanges") ?>" />
-</form>
-</center>
+</div>
+</form>
\ No newline at end of file
$timenow = time();
print_simple_box_start('center');
print_heading($strcurrentusers);
- echo '<table width="100%">';
+ echo '<table id="chatcurrentusers">';
foreach ($chatusers as $chatuser) {
$lastping = $timenow - $chatuser->lastmessageping;
- echo '<tr><td width="35">';
+ echo '<tr><td class="chatuserimage">';
echo "<a href=\"$CFG->wwwroot/user/view.php?id=$chatuser->id&course=$chat->course\">";
print_user_picture($chatuser->id, 0, $chatuser->picture, false, false, false);
- echo '</a></td><td style="vertical-align: middle">';
- echo '<p><font size="1">';
+ echo '</a></td><td class="chatuserdetails">';
+ echo '<p>';
echo fullname($chatuser).'<br />';
- echo "<font color=\"#888888\">$stridle: ".format_time($lastping)."</font>";
- echo '</font></p>';
+ echo "<span class=\"idletime\">$stridle: ".format_time($lastping)."</span>";
+ echo '</p>';
echo '</td></tr>';
}
echo '</table>';