1 step done: I changed my own localhost by filezilla, so I could insert a new folder “frontpage” and change componentheading.
But:
Because I’m not expreienced with this mvc model of joomla, it seems that there are no changes I result.
Here ‘s the code I changed in xampphtdocsjoomla1templatesja_edenitehtmlfrontpagedefault.php:
<div class=”componentheading<?php echo $this->params->get(‘pageclass_sfx’) ?>”>
<?php
$length = 1;
$titel_alt = $this->escape($this->params->get(‘page_title’));
$text = substr($titel_alt, 0, $length);
$text2 = substr($titel_alt, 1);
$titel_neu = ‘<span style=”color: red;”>’.$text.'</span>’.$text2;
// style=”color: red;” Ist jetzt nur nen Beispiel kannst auch ne Klasse vergeben
echo $titel_neu;
?>
</div>
But nothng changes…
What do I do wrong???