Hallo Andreas!
Du darfst im Stylesheet kein "=" verwenden sondern du musst einen ":" nehmen, dann wird es funktionieren!!!
Bis dann
Alex
falsch:
<style type="text/css">
<!--.klasse {
»» color=red;
»» font-size=14;
»» text-decoration:none;
»» } -->
</style>
richtig:
<style type="text/css">
<!--.klasse {
»» color:red;
»» font-size:14;
»» text-decoration:none;
»» } -->
</style>