Ok, here it is an example:
Code:
$ms_output = '<span class="smallfont">';
$ms_output .= 'Page generated in ' . $total_time . ' seconds (' . $php_percent . ' - ' . $sql_percent . ') with ' . $query_count . ' queries';
$ms_output .= '</span><br />' . "\n";
[... code here, don't edit ...]
$ms_output .= '<span class="smallfont">';
$ms_output .= $memory_status . $debug_status . $gzip_status . $server_status . $templates_status;
$ms_output .= '</span>' . "\n";
The mod will remove the table rows and display it as 2 regular text lines.
If you want the $ms_output template code even simplier, use this:
Code:
$ms_output = 'Page generated in ' . $total_time . ' seconds (' . $php_percent . ' - ' . $sql_percent . ') with ' . $query_count . ' queries<br />';
[... code here, don't edit ...]
$ms_output .= $memory_status . $debug_status . $gzip_status . $server_status . $templates_status;
Then you can simply play with the regular template code:
Code:
<if condition="$show['microstats']">{microstats}</if>
the way you like it.
For example, to make your two new lines centered, use this:
Code:
<if condition="$show['microstats']">
<div style="text-align: center;">{microstats}</div>
</if>
Let me know if I was clear...
If you have any other questions, go ahead and post them.