Hello,
This is not one of the better things I have seen done with a template. Should be an easier way to change this. It is pre-written into your template.
In your template’s index.php file find the following
<!-- BEGIN: TOPSPOTLIGHT -->
<div id="ja-topslwrap" class="clearfix">
<div id="ja-topsl">
<?php
$spotlight = array ('user1','user2','user5');
$topsl = $tmpTools->calSpotlight ($spotlight);
if( $topsl ) {
?>
<div id="ja-topsl-leftwrap">
<div class="innerpad">
<div id="ja-topsl-head">
Highlight
</div>
Change the word Highlight that I have colored red above to what ever you want it to say
Example
<!-- BEGIN: TOPSPOTLIGHT -->
<div id="ja-topslwrap" class="clearfix">
<div id="ja-topsl">
<?php
$spotlight = array ('user1','user2','user5');
$topsl = $tmpTools->calSpotlight ($spotlight);
if( $topsl ) {
?>
<div id="ja-topsl-leftwrap">
<div class="innerpad">
<div id="ja-topsl-head">
Fun Stuff
</div>
Hope this helps.