I noticed as I was working that the message was not being displayed in its normal green or red box after completing something. I'm not sure if I accidentally changed the code some time, but I looked in what I believe to be an unchanged original file on my hard drive and it was the same as I have it.
What I believe it is...
<div>
<?if($errors) {?>
<p align="center" class="errormessage"><?=$errors?></p>
<?}elseif($msg) {?>
<p align="center" class="infomessage"><?=$msg?></p>
<?}?>
</div>
What it should be...
<div>
<?if($errors) {?>
<p align="center" id="errormessage"><?=$errors?></p>
<?}elseif($msg) {?>
<p align="center" id="infomessage"><?=$msg?></p>
<?}?>
</div>