This what I used to show the newest pilots. You can alter it to show a welcome message.
CSS - goes in your skins css file.
.clean-welcome{
border:solid 1px #349534;
background:#C9FFCA;
color:#008000;
font-weight:bold;
padding:4px;
text-align:center;
}
Place the code below where you want to display the message
<div class="clean-welcome"> <?php $newpilot = PilotData::getLatestPilots(1); ?>
Welcome Alaska Adventures Newest Pilot:<?php foreach ($newpilot as $pilot)
{
echo $pilot->firstname.' '.$pilot->lastname.' ('.PilotData::getPilotCode($pilot->code, $pilot->pilotid).')';
}
?>
</div>