Im currently trying to make the first word of any/all my Joomla Articles/Categories/Blog headings have one color and then the rest of the sentence be the site default. I have found the code below that does change the color but it only works if the heading contains 2 words and if there are more then it removes all formatting.
<?php if ($this->params->get('show_page_heading')) : ?>
<?php
$title = $this->escape($this->params->get('page_heading'));
$title = str_replace(' ', '<span>', $title);
echo "<h1>" . $title . "</h1>";
?>
<?php endif; ?>
Thanks!