Hi oscar_nz,
Step 1 : templatesja_zeolitehtmlcom_contentfrontpagedefault.php line 12, change code :
[PHP]
<?php if ($this->params->get(‘show_page_title’)) : ?>
<h1 class=”componentheading<?php echo $this->params->get(‘pageclass_sfx’) ?>”>
<?php echo $this->params->get(‘page_title’); ?>
</h1>
<?php endif; ?>
[/PHP]
to
[PHP]
<?php if ($this->params->get(‘show_page_title’)) : ?>
<h1 class=”componentheading<?php echo $this->params->get(‘pageclass_sfx’) ?>”>
<span><?php echo $this->params->get(‘page_title’); ?></span>
</h1>
<?php endif; ?>
[/PHP]
Step 2: in templatesja_zeolitecsstempate.css add styles :
.componentheading_hilite {
background:#04A504 url(../images/h3-r-hilite.gif) no-repeat right center;
color:#FFFFFF;
font-size:125%;
font-weight:bold;
height:29px;
line-height:29px;
margin:-8px -8px 10px;
padding:0;
}
.componentheading_hilite span {
background: url(../images/h3-l-hilite.gif) no-repeat left center;
display:block;
height:29px;
padding-left:28px;
}
Good luck,