simplypixie 123 Posting Pro in Training

Works fine for me - are you sure you just have the navigation in your external file, like this?

<div class='navi'>

<ul class='item'>
<li><a href=''>Birthday</a></li>
<li><a href=''>New Baby</a></li>
<li><a href=''>Anniversary</a></li>
<li><a href=''>Wedding</a></li>
<li><a href=''>Driving Test</a></li>
<li><a href=''>Moving</a></li>
<li><a href=''>New Job</a></li>
<li><a href=''>Retirement</a></li>
<li><a href=''>Good Luck</a></li>
<li><a href=''>Engagement</a></li>
</ul>

</div>
simplypixie 123 Posting Pro in Training

You can't run PHP in an .html file, it has to be a .php file

blocblue commented: That's incorrect. +0
simplypixie 123 Posting Pro in Training

Set a style in you style sheet and apply that.

In style sheet:

.date-celebrants {
    font-color: yellow;
}

And in you HTML/PHP put:

echo '<span class="date-celebrants">' .date('M'). ' ' .('Celebrants'). '</span>';
simplypixie 123 Posting Pro in Training
rotten69 commented: Please understand the Question before you reply. Thank you. +0