Moin goodssale,

so sollte es gehen. Suche in der modules/FeatureView/style/FeatureView.css ab Zeile 41:
ul#featuretabs li a.current {
background: url('/modules/FeatureView/images/feature-tab-current.png');
color: #FFF;
}
und ersetze bzw. erweitere direkt anschliessend mit folgendem Code:
ul#featuretabs li#one a.current {
background: url('/modules/FeatureView/images/feature-tab-current1.png');
color: #FFF;
}
ul#featuretabs li#two a.current {
background: url('/modules/FeatureView/images/feature-tab-current2.png');
color: #FFF;
}
ul#featuretabs li#three a.current {
background: url('/modules/FeatureView/images/feature-tab-current3.png');
color: #FFF;
}
Jetzt suche noch in der modules/FeatureView/index.php ab Zeile 56:
<li>
<a href="javascript:;">
<img src="modules/'. $module_name .'/images/icon/' . $limg1 .'" alt="" />
<strong>' . $title1 . '</strong><br />
<span>' . $txt1 . '</span>
</a>
</li>
<li>
<a href="javascript:;">
<img src="modules/'. $module_name .'/images/icon/' . $limg2 . '" alt="" />
<strong>' . $title2 . '</strong><br />
<span>' . $txt2 . '</span>
</a>
</li>
<li>
<a href="javascript:;">
<img src="modules/'. $module_name .'/images/icon/' . $limg3 . '" alt="" />
<strong>' . $title3 . '</strong><br />
<span>' . $txt3 . '</span>
</a>
</li>
und ersetze ihn hiermit:
<li id="one">
<a href="javascript:;">
<img src="modules/'. $module_name .'/images/icon/' . $limg1 .'" alt="" />
<strong>' . $title1 . '</strong><br />
<span>' . $txt1 . '</span>
</a>
</li>
<li id="two">
<a href="javascript:;">
<img src="modules/'. $module_name .'/images/icon/' . $limg2 . '" alt="" />
<strong>' . $title2 . '</strong><br />
<span>' . $txt2 . '</span>
</a>
</li>
<li id="three">
<a href="javascript:;">
<img src="modules/'. $module_name .'/images/icon/' . $limg3 . '" alt="" />
<strong>' . $title3 . '</strong><br />
<span>' . $txt3 . '</span>
</a>
</li>
Wenn du noch einen Block nutzt, musst auch alle "<li>" wie in der index.php anpassen. Die Grafiken hänge ich mal an.